author | Rich Felker <dalias@aerifal.cx> | 2012年10月25日 15:40:58 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012年10月25日 15:40:58 -0400 |
commit | 607b05aca683eee5bcdb7bf9af4ebf02adc635d9 (patch) | |
tree | 34c9c2435269738bb8d489346ea5e388b14dd850 /src | |
parent | 80a45458e0d9b75d508110bd880d0ae0432b0356 (diff) | |
download | musl-607b05aca683eee5bcdb7bf9af4ebf02adc635d9.tar.gz |
-rw-r--r-- | src/internal/libc.h | 8 | ||||
-rw-r--r-- | src/internal/stdio_impl.h | 8 | ||||
-rw-r--r-- | src/internal/syscall.h | 8 |
diff --git a/src/internal/libc.h b/src/internal/libc.h index 703d9853..5ab4e679 100644 --- a/src/internal/libc.h +++ b/src/internal/libc.h @@ -46,10 +46,10 @@ extern struct __libc *__libc_loc(void) __attribute__((const)); /* Designed to avoid any overhead in non-threaded processes */ -void __lock(volatile int *); -void __unlock(volatile int *); -int __lockfile(FILE *); -void __unlockfile(FILE *); +void __lock(volatile int *) ATTR_LIBC_VISIBILITY; +void __unlock(volatile int *) ATTR_LIBC_VISIBILITY; +int __lockfile(FILE *) ATTR_LIBC_VISIBILITY; +void __unlockfile(FILE *) ATTR_LIBC_VISIBILITY; #define LOCK(x) (libc.threads_minus_1 ? (__lock(x),1) : ((void)(x),1)) #define UNLOCK(x) (libc.threads_minus_1 ? (__unlock(x),1) : ((void)(x),1)) diff --git a/src/internal/stdio_impl.h b/src/internal/stdio_impl.h index 279e91fd..80646f8c 100644 --- a/src/internal/stdio_impl.h +++ b/src/internal/stdio_impl.h @@ -74,10 +74,10 @@ size_t __string_read(FILE *, unsigned char *, size_t); int __toread(FILE *); int __towrite(FILE *); -int __overflow(FILE *, int); -int __oflow(FILE *); -int __uflow(FILE *); -int __underflow(FILE *); +#if defined(__PIC__) && (100*__GNUC__+__GNUC_MINOR__ >= 303) +__attribute__((visibility("protected"))) +#endif +int __overflow(FILE *, int), __uflow(FILE *); int __fseeko(FILE *, off_t, int); int __fseeko_unlocked(FILE *, off_t, int); diff --git a/src/internal/syscall.h b/src/internal/syscall.h index 50409ef8..7381efea 100644 --- a/src/internal/syscall.h +++ b/src/internal/syscall.h @@ -1,9 +1,11 @@ #ifndef _INTERNAL_SYSCALL_H #define _INTERNAL_SYSCALL_H -long __syscall_ret(unsigned long); -long __syscall(long, ...); -long __syscall_cp(long, long, long, long, long, long, long); +#if defined(__PIC__) && (100*__GNUC__+__GNUC_MINOR__ >= 303) +__attribute__((visibility("protected"))) +#endif +long __syscall_ret(unsigned long), __syscall(long, ...), + __syscall_cp(long, long, long, long, long, long, long); #include <sys/syscall.h> #include "syscall_arch.h" |