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