Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

13 lines
167 B
C

#ifndef lint
static char sccsid[] = "@(#)ntohs.c 1.1 94/10/31 SMI"; /* from UCB X.X XX/XX/XX */
#endif
#include <sys/types.h>
ntohs(a)
u_short a;
{
return (a);
}