diff options
Diffstat (limited to 'libc/sysdeps/linux/avr32')
-rw-r--r-- | libc/sysdeps/linux/avr32/brk.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/avr32/mmap.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/avr32/sigaction.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/avr32/brk.c b/libc/sysdeps/linux/avr32/brk.c index a54b49a61..7d34405dc 100644 --- a/libc/sysdeps/linux/avr32/brk.c +++ b/libc/sysdeps/linux/avr32/brk.c @@ -9,7 +9,7 @@ #include <unistd.h> #include <sys/syscall.h> -libc_hidden_proto(brk) +/* libc_hidden_proto(brk) */ void *__curbrk attribute_hidden = 0; diff --git a/libc/sysdeps/linux/avr32/mmap.c b/libc/sysdeps/linux/avr32/mmap.c index 92d3fe45a..b3d8b98c1 100644 --- a/libc/sysdeps/linux/avr32/mmap.c +++ b/libc/sysdeps/linux/avr32/mmap.c @@ -11,7 +11,7 @@ #include <sys/mman.h> #include <sys/syscall.h> -libc_hidden_proto(mmap) +/* libc_hidden_proto(mmap) */ static _syscall6(__ptr_t, mmap2, __ptr_t, addr, size_t, len, int, prot, int, flags, int, fd, __off_t, pgoff) diff --git a/libc/sysdeps/linux/avr32/sigaction.c b/libc/sysdeps/linux/avr32/sigaction.c index 5a1ec9eae..05caec7ee 100644 --- a/libc/sysdeps/linux/avr32/sigaction.c +++ b/libc/sysdeps/linux/avr32/sigaction.c @@ -55,7 +55,7 @@ int __libc_sigaction(int signum, const struct sigaction *act, } #ifndef LIBC_SIGACTION -libc_hidden_proto(sigaction) +/* libc_hidden_proto(sigaction) */ weak_alias(__libc_sigaction, sigaction) libc_hidden_weak(sigaction) #endif |