diff options
author | dcs <dcs@FreeBSD.org> | 2001-04-29 02:36:36 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 2001-04-29 02:36:36 +0000 |
commit | 1e7d7fa08115fc164f8ace561bcb994a5e67b77f (patch) | |
tree | 690032d340b3613edf94f5cc9c0fd8ae2c6c2487 /sys/boot/ficl/unix.c | |
parent | 92d7ad4004a51f2ffc4e8141df3233065f426cfd (diff) | |
download | FreeBSD-src-1e7d7fa08115fc164f8ace561bcb994a5e67b77f.zip FreeBSD-src-1e7d7fa08115fc164f8ace561bcb994a5e67b77f.tar.gz |
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.
Diffstat (limited to 'sys/boot/ficl/unix.c')
-rw-r--r-- | sys/boot/ficl/unix.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/boot/ficl/unix.c b/sys/boot/ficl/unix.c new file mode 100644 index 0000000..4400752 --- /dev/null +++ b/sys/boot/ficl/unix.c @@ -0,0 +1,23 @@ +/* $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; +} + + |