xref: /netbsd-src/lib/libc/net/Lint_htons.c (revision c41a4eebefede43f6950f838a387dc18c6a431bf)
1 /*	$NetBSD: Lint_htons.c,v 1.1 1997/11/06 00:51:23 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_port_t
12 htons(host16)
13 	in_port_t host16;
14 {
15 	return (0);
16 }
17