diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-04-17 20:58:17 +0300 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-04-17 14:53:27 -0400 |
commit | fbeadd150feaa7993250d2d6739df670d4539e54 (patch) | |
tree | 1bfaf993cf23872cc70d860247d686c8a429bba5 /arch/powerpc | |
parent | de45164effdddf500756e10e8c6f56b79301d82b (diff) | |
download | musl-fbeadd150feaa7993250d2d6739df670d4539e54.tar.gz musl-fbeadd150feaa7993250d2d6739df670d4539e54.tar.xz musl-fbeadd150feaa7993250d2d6739df670d4539e54.zip |
make socketcall types common as they are same for all architectures
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/syscall_arch.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/powerpc/syscall_arch.h b/arch/powerpc/syscall_arch.h index 21c11347..7a6b6b7b 100644 --- a/arch/powerpc/syscall_arch.h +++ b/arch/powerpc/syscall_arch.h @@ -39,21 +39,3 @@ static inline long __syscall6(long n, long a, long b, long c, long d, long e, lo { return (__syscall)(n, a, b, c, d, e, f); } - -#define __SC_socket 1 -#define __SC_bind 2 -#define __SC_connect 3 -#define __SC_listen 4 -#define __SC_accept 5 -#define __SC_getsockname 6 -#define __SC_getpeername 7 -#define __SC_socketpair 8 -#define __SC_send 9 -#define __SC_recv 10 -#define __SC_sendto 11 -#define __SC_recvfrom 12 -#define __SC_shutdown 13 -#define __SC_setsockopt 14 -#define __SC_getsockopt 15 -#define __SC_sendmsg 16 -#define __SC_recvmsg 17 |