Initial revision

This commit is contained in:
Roland McGrath 1990-11-02 06:14:39 +00:00
parent 4a35ee30fa
commit f19873d0a6
4 changed files with 40 additions and 0 deletions

10
sysdeps/generic/htonl.c Normal file
View File

@ -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;
}

10
sysdeps/generic/htons.c Normal file
View File

@ -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;
}

10
sysdeps/generic/ntohl.c Normal file
View File

@ -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;
}

10
sysdeps/generic/ntohs.c Normal file
View File

@ -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;
}