NetBSD/lib/libc/net/Lint_htonl.c

18 lines
263 B
C

/* $NetBSD: Lint_htonl.c,v 1.3 2000/06/14 06:49:06 cgd Exp $ */
/*
* This file placed in the public domain.
* Chris Demetriou, November 5, 1997.
*/
#include <sys/types.h>
#undef htonl
/*ARGSUSED*/
in_addr_t
htonl(host32)
in_addr_t host32;
{
return (0);
}