xref: /freebsd/stand/ficl/unix.c (revision 069ac184)
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