freebsd-src/stand/ficl/unix.c
Warner Losh 2a63c3be15 Remove $FreeBSD$: one-line .c comment pattern
Remove /^/[*/]\s*\$FreeBSD\$.*\n/
2023-08-16 11:54:29 -06:00

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;
}