mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-02 12:20:51 +00:00
24 lines
220 B
C
24 lines
220 B
C
|
/* $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;
|
||
|
}
|
||
|
|
||
|
|