1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00
freebsd/stand/ficl/unix.c
2017-11-14 23:02:19 +00:00

24 lines
221 B
C

/* $FreeBSD$ */
#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;
}