Files
oldlinux-files/gnu/glibc/glibc-1.03/sysdeps/generic/ntohs.c
2024-02-19 00:24:47 -05:00

11 lines
136 B
C

#include <ansidecl.h>
#include <netinet/in.h>
#undef ntohs
unsigned short int
DEFUN(ntohs, (x), unsigned short int x)
{
return x;
}