freebsd-dev/sys/boot/ficl/unix.c
Daniel C. Sobral 49acc8fe50 Bring in ficl 2.05.
This version has a step debugger, which now completely replaces the
old trace feature. Also, we moved all of the FreeBSD-specific MI
code to loader.c, reducing the diff between this and the official
FICL distribution.
2001-04-29 02:36:36 +00:00

24 lines
220 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;
}