Deleted Added
full compact
unix.c (76116) unix.c (167850)
1/* $FreeBSD: head/sys/boot/ficl/unix.c 76116 2001-04-29 02:36:36Z dcs $ */
1/* $FreeBSD: head/sys/boot/ficl/unix.c 167850 2007-03-23 22:26:01Z jkim $ */
2
3#include <string.h>
4#include <netinet/in.h>
5
6#include "ficl.h"
7
8
9
10unsigned long ficlNtohl(unsigned long number)
2
3#include <string.h>
4#include <netinet/in.h>
5
6#include "ficl.h"
7
8
9
10unsigned long ficlNtohl(unsigned long number)
11 {
12 return ntohl(number);
13 }
11{
12 return ntohl(number);
13}
14
15
16
17
18void ficlCompilePlatform(FICL_DICT *dp)
19{
20 return;
21}
22
23
14
15
16
17
18void ficlCompilePlatform(FICL_DICT *dp)
19{
20 return;
21}
22
23