diff options
Diffstat (limited to 'socket')
-rw-r--r-- | socket/Makefile | 2 | ||||
-rw-r--r-- | socket/sys/socket.h | 4 | ||||
-rw-r--r-- | socket/sys/un.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/socket/Makefile b/socket/Makefile index 3af3dc9d39..1651b75e1c 100644 --- a/socket/Makefile +++ b/socket/Makefile @@ -21,7 +21,7 @@ # subdir := socket -headers := sys/socket.h sys/un.h sockaddrcom.h socketbits.h +headers := sys/socket.h sys/un.h bits/sockaddr.h bits/socket.h routines := accept bind connect getpeername getsockname getsockopt \ listen recv recvfrom recvmsg send sendmsg sendto \ diff --git a/socket/sys/socket.h b/socket/sys/socket.h index bb4444d192..aa2309c013 100644 --- a/socket/sys/socket.h +++ b/socket/sys/socket.h @@ -18,8 +18,8 @@ Boston, MA 02111-1307, USA. */ #ifndef _SYS_SOCKET_H - #define _SYS_SOCKET_H 1 + #include <features.h> __BEGIN_DECLS @@ -31,7 +31,7 @@ __BEGIN_DECLS /* This operating system-specific header file defines the SOCK_*, PF_*, AF_*, MSG_*, SOL_*, and SO_* constants, and the `struct sockaddr', `struct msghdr', and `struct linger' types. */ -#include <socketbits.h> +#include <bits/socket.h> #ifdef __USE_BSD /* This is the 4.3 BSD `struct sockaddr' format, which is used as wire diff --git a/socket/sys/un.h b/socket/sys/un.h index 331f49650f..03f36058bf 100644 --- a/socket/sys/un.h +++ b/socket/sys/un.h @@ -17,14 +17,14 @@ Boston, MA 02111-1307, USA. */ #ifndef _SYS_UN_H - #define _SYS_UN_H 1 + #include <sys/cdefs.h> #include <string.h> /* For prototype of `strlen'. */ /* Get the definition of the macro to define the common sockaddr members. */ -#include <sockaddrcom.h> +#include <bits/sockaddr.h> __BEGIN_DECLS |