diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-05-16 10:32:49 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-05-16 10:32:49 +0000 |
commit | 840ea4e54f944971741e0bf4b1b9d9f6f417634d (patch) | |
tree | 883b1e4c6bf264329e39bd59f51805953d34059a /include/asm-alpha | |
parent | 7438179b9fdc54ef8d2d3f573db0ef253e3fdba9 (diff) |
Fix SOCK_ constant definitions for all architectures. Patch sent to
Linus. Our diffs relativ to Linus' latest and greatest is getting
fairly small now.
Diffstat (limited to 'include/asm-alpha')
-rw-r--r-- | include/asm-alpha/socket.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-alpha/socket.h b/include/asm-alpha/socket.h index f8b4154bd..a7ad1fbf0 100644 --- a/include/asm-alpha/socket.h +++ b/include/asm-alpha/socket.h @@ -50,6 +50,8 @@ #define SO_SECURITY_ENCRYPTION_TRANSPORT 20 #define SO_SECURITY_ENCRYPTION_NETWORK 21 +/* Nast libc5 fixup - bletch */ +#if defined(__KERNEL__) /* Socket types. */ #define SOCK_STREAM 1 /* stream (connection) socket */ #define SOCK_DGRAM 2 /* datagram (conn.less) socket */ @@ -61,5 +63,6 @@ /* level. For writing rarp and */ /* other similar things on the */ /* user level. */ +#endif #endif /* _ASM_SOCKET_H */ |