diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2015-05-12 02:36:33 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2015-05-12 02:36:33 +0000 |
commit | be98e1ae3decabdd852fbe6496166aaa9acfbf9e (patch) | |
tree | ba5e252f1f49f00233d74f3c75f217171ccf80c8 /unix.c |
Notes
Diffstat (limited to 'unix.c')
-rw-r--r-- | unix.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/unix.c b/unix.c new file mode 100644 index 0000000000000..3cf7862329b6b --- /dev/null +++ b/unix.c @@ -0,0 +1,21 @@ +#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; +} + + |