xref: /minix3/lib/libc/net/Lint_htonl.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /* $NetBSD: Lint_htonl.c,v 1.4 2001/08/22 07:42:08 itojun Exp $ */
2*2fe8fb19SBen Gras 
3*2fe8fb19SBen Gras /*
4*2fe8fb19SBen Gras  * This file placed in the public domain.
5*2fe8fb19SBen Gras  * Chris Demetriou, November 5, 1997.
6*2fe8fb19SBen Gras  */
7*2fe8fb19SBen Gras 
8*2fe8fb19SBen Gras #include <sys/types.h>
9*2fe8fb19SBen Gras #undef htonl
10*2fe8fb19SBen Gras 
11*2fe8fb19SBen Gras /*ARGSUSED*/
12*2fe8fb19SBen Gras uint32_t
htonl(host32)13*2fe8fb19SBen Gras htonl(host32)
14*2fe8fb19SBen Gras 	uint32_t host32;
15*2fe8fb19SBen Gras {
16*2fe8fb19SBen Gras 	return (0);
17*2fe8fb19SBen Gras }
18