2001-08-22 11:42:07 +04:00
|
|
|
/* $NetBSD: Lint_htonl.c,v 1.4 2001/08/22 07:42:08 itojun 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*/
|
2001-08-22 11:42:07 +04:00
|
|
|
uint32_t
|
1997-11-06 03:51:04 +03:00
|
|
|
htonl(host32)
|
2001-08-22 11:42:07 +04:00
|
|
|
uint32_t host32;
|
1997-11-06 03:51:04 +03:00
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|