diff options
| author | Daniel C. Sobral <dcs@FreeBSD.org> | 2001-04-29 02:36:36 +0000 |
|---|---|---|
| committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2001-04-29 02:36:36 +0000 |
| commit | 49acc8fe5037621f15bb71d9a82f44cb965ce38f (patch) | |
| tree | ebb4a3d5744bfa32872757cbcde7f7a884e7481e /sys/boot/ficl/unix.c | |
| parent | cd94939222bcaeb2c22c0c6a63b348bbb0b443b8 (diff) | |
Notes
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 000000000000..4400752f4f48 --- /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; +} + + |
