summaryrefslogtreecommitdiff
path: root/lib/libc/net/Lint_htons.c
blob: cc6acd510eab6dd2d9e0f9b4fcb919acd0de20ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* $NetBSD: Lint_htons.c,v 1.3 2000/06/14 06:49:07 cgd Exp $ */

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <sys/types.h>
#undef htons

/*ARGSUSED*//*NOSTRICT*/
in_port_t
htons(host16)
	in_port_t host16;
{
	return (0);
}