From 7405cd1e2bafc046b4311005b94092d74a7a9c66 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 14 Apr 2015 13:48:20 -0400 Subject: fix inconsistent visibility for internal syscall symbols --- src/thread/__syscall_cp.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/thread') diff --git a/src/thread/__syscall_cp.c b/src/thread/__syscall_cp.c index a48cee9b..faf57b1a 100644 --- a/src/thread/__syscall_cp.c +++ b/src/thread/__syscall_cp.c @@ -1,6 +1,11 @@ #include "pthread_impl.h" #include "syscall.h" +#ifdef SHARED +__attribute__((__visibility__("hidden"))) +#endif +long __syscall_cp_c(); + static long sccp(syscall_arg_t nr, syscall_arg_t u, syscall_arg_t v, syscall_arg_t w, syscall_arg_t x, syscall_arg_t y, syscall_arg_t z) -- cgit v1.2.1