glibc/sysdeps/generic/htons.c

11 lines
136 B
C

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