13 lines
167 B
C
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);
|
|
}
|