xref: /netbsd-src/lib/libc/net/Lint_htonl.c (revision 93f9db1b75d415b78f73ed629beeb86235153473)
1 /*	$NetBSD: Lint_htonl.c,v 1.1 1997/11/06 00:51:19 cgd Exp $	*/
2 
3 /*
4  * This file placed in the public domain.
5  * Chris Demetriou, November 5, 1997.
6  */
7 
8 #include <sys/types.h>
9 
10 /*ARGSUSED*/
11 in_addr_t
12 htonl(host32)
13 	in_addr_t host32;
14 {
15 	return (0);
16 }
17