mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 21:29:45 +08:00
20 lines
234 B
C
20 lines
234 B
C
#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();
|
|
}
|
|
|
|
|