1 /* $NetBSD: Lint_ntohl.c,v 1.1 1997/11/06 00:51:25 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 ntohl(net32) 13 in_addr_t net32; 14 { 15 return (0); 16 } 17