mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
2a63c3be15
Remove /^/[*/]\s*\$FreeBSD\$.*\n/
23 lines
205 B
C
23 lines
205 B
C
|
|
#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;
|
|
}
|
|
|
|
|