diff options
author | Szabolcs Nagy <nsz@port70.net> | 2015-04-30 18:50:04 +0100 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2015-04-30 16:22:57 -0400 |
commit | 18f75b80fd67fd7348fcfb807216f654597b592f (patch) | |
tree | 5c09a03a4c5d682eccf1ce5d727affc6beea593b /arch/or1k | |
parent | 4e50b2e4b5c32b804324eb6967a9ca72c9a2b654 (diff) | |
download | musl-18f75b80fd67fd7348fcfb807216f654597b592f.tar.gz musl-18f75b80fd67fd7348fcfb807216f654597b592f.tar.bz2 musl-18f75b80fd67fd7348fcfb807216f654597b592f.tar.xz musl-18f75b80fd67fd7348fcfb807216f654597b592f.zip |
fix __syscall declaration with wrong visibility in syscall_arch.h
remove __syscall declaration where it is not needed (aarch64, arm,
microblaze, or1k) and add the hidden attribute where it is (mips).
Diffstat (limited to 'arch/or1k')
-rw-r--r-- | arch/or1k/syscall_arch.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/or1k/syscall_arch.h b/arch/or1k/syscall_arch.h index 3e4650cc..caff7ece 100644 --- a/arch/or1k/syscall_arch.h +++ b/arch/or1k/syscall_arch.h @@ -5,8 +5,6 @@ #define SYSCALL_MMAP2_UNIT 8192ULL -long (__syscall)(long, ...); - #ifndef __clang__ static __inline long __syscall0(long n) |