mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 16:35:27 -04:00
23 lines
221 B
C
23 lines
221 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;
|
|
}
|
|
|
|
|