diff options
Diffstat (limited to 'sys/boot/ficl/unix.c')
-rw-r--r-- | sys/boot/ficl/unix.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/boot/ficl/unix.c b/sys/boot/ficl/unix.c new file mode 100644 index 0000000..4400752 --- /dev/null +++ b/sys/boot/ficl/unix.c @@ -0,0 +1,23 @@ +/* $FreeBSD$ */ + +#include <string.h> +#include <netinet/in.h> + +#include "ficl.h" + + + +unsigned long ficlNtohl(unsigned long number) + { + return ntohl(number); + } + + + + +void ficlCompilePlatform(FICL_DICT *dp) +{ + return; +} + + |