summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/nfsclient/src/rpcio.modini.c
blob: f0359974dea72834c313a1cea6bb80d407e14db1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * @file
 *
 * @brief RPCIO Module Initialize
 * @ingroup libfs
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include "librtemsNfs.h"
/* CEXP module support (magic init) */
void
_cexpModuleInitialize(void *mod)
{
	rpcUdpInit();
}

int
_cexpModuleFinalize(void *mod)
{
	return rpcUdpCleanup();
}