NetBSD/lib/libc/net/Lint_ntohs.c

18 lines
273 B
C

/* $NetBSD: Lint_ntohs.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 ntohs
/*ARGSUSED*//*NOSTRICT*/
in_port_t
ntohs(net16)
in_port_t net16;
{
return (0);
}