176116Sdcs/* $FreeBSD: releng/11.0/sys/boot/ficl/unix.c 167850 2007-03-23 22:26:01Z jkim $ */
276116Sdcs
376116Sdcs#include <string.h>
476116Sdcs#include <netinet/in.h>
576116Sdcs
676116Sdcs#include "ficl.h"
776116Sdcs
876116Sdcs
976116Sdcs
1076116Sdcsunsigned long ficlNtohl(unsigned long number)
11167850Sjkim{
12167850Sjkim    return ntohl(number);
13167850Sjkim}
1476116Sdcs
1576116Sdcs
1676116Sdcs
1776116Sdcs
1876116Sdcsvoid ficlCompilePlatform(FICL_DICT *dp)
1976116Sdcs{
2076116Sdcs    return;
2176116Sdcs}
2276116Sdcs
2376116Sdcs
24