xref: /freebsd/stand/ficl/unix.c (revision 84943d6f38e936ac3b7a3947ca26eeb27a39f938)
1 
2 #include <string.h>
3 #include <netinet/in.h>
4 
5 #include "ficl.h"
6 
7 
8 
9 unsigned long ficlNtohl(unsigned long number)
10 {
11     return ntohl(number);
12 }
13 
14 
15 
16 
17 void ficlCompilePlatform(FICL_DICT *dp)
18 {
19     return;
20 }
21 
22 
23