Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/stand/ficl/unix.c
34677 views
1
2
#include <string.h>
3
#include <netinet/in.h>
4
5
#include "ficl.h"
6
7
8
9
unsigned long ficlNtohl(unsigned long number)
10
{
11
return ntohl(number);
12
}
13
14
15
16
17
void ficlCompilePlatform(FICL_DICT *dp)
18
{
19
return;
20
}
21
22
23
24