diff options
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; +} + + |