Add more bits for native hammer boot support.
[dragonfly.git] / sys / boot / ficl / unix.c
1 /*
2  * $FreeBSD: src/sys/boot/ficl/unix.c,v 1.2 2007/03/23 22:26:01 jkim Exp $
3  * $DragonFly: src/sys/boot/ficl/unix.c,v 1.2 2008/03/29 23:31:07 swildner Exp $
4  */
5
6 #include <string.h>
7 #include <netinet/in.h>
8
9 #include "ficl.h"
10
11
12
13 unsigned long ficlNtohl(unsigned long number)
14 {
15     return ntohl(number);
16 }
17
18
19
20
21 void ficlCompilePlatform(FICL_DICT *dp)
22 {
23     return;
24 }
25
26