2001-04-29 02:36:36 +00:00
|
|
|
/* $FreeBSD$ */
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include "ficl.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned long ficlNtohl(unsigned long number)
|
2007-03-23 22:26:01 +00:00
|
|
|
{
|
|
|
|
return ntohl(number);
|
|
|
|
}
|
2001-04-29 02:36:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ficlCompilePlatform(FICL_DICT *dp)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|