2000-06-14 10:48:47 +04:00
|
|
|
/* $NetBSD: Lint_htonl.c,v 1.3 2000/06/14 06:49:06 cgd Exp $ */
|
1997-11-06 03:51:04 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file placed in the public domain.
|
|
|
|
* Chris Demetriou, November 5, 1997.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1999-05-03 17:12:34 +04:00
|
|
|
#undef htonl
|
1997-11-06 03:51:04 +03:00
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
in_addr_t
|
|
|
|
htonl(host32)
|
|
|
|
in_addr_t host32;
|
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|