mirror of git://sourceware.org/git/glibc.git
Initial revision
This commit is contained in:
parent
4a35ee30fa
commit
f19873d0a6
|
@ -0,0 +1,10 @@
|
|||
#include <ansidecl.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#undef htonl
|
||||
|
||||
unsigned long int
|
||||
DEFUN(htonl, (x), unsigned long int x)
|
||||
{
|
||||
return x;
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#include <ansidecl.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#undef htons
|
||||
|
||||
unsigned short int
|
||||
DEFUN(htons, (x), unsigned short int x)
|
||||
{
|
||||
return x;
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#include <ansidecl.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#undef ntohl
|
||||
|
||||
unsigned long int
|
||||
DEFUN(ntohl, (x), unsigned long int x)
|
||||
{
|
||||
return x;
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#include <ansidecl.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#undef ntohs
|
||||
|
||||
unsigned short int
|
||||
DEFUN(ntohs, (x), unsigned short int x)
|
||||
{
|
||||
return x;
|
||||
}
|
Loading…
Reference in New Issue