Make _signal hidden in all cases.

_signal was static in 64 bit, and hidden on 32 bit. There is no
reason to have this distinction, so make it hidden in all cases.

Change-Id: I09d5d93ac8cab4fe14dc7bdfeb25aa46a3b7413d
This commit is contained in:
Christopher Ferris 2015-10-30 17:10:47 -07:00
parent c36be975ce
commit 1721cd6a74

View File

@ -28,12 +28,7 @@
#include <signal.h>
#ifdef __LP64__
static
#else
__LIBC_HIDDEN__
#endif
sighandler_t _signal(int signum, sighandler_t handler, int flags) {
__LIBC_HIDDEN__ sighandler_t _signal(int signum, sighandler_t handler, int flags) {
struct sigaction sa;
sigemptyset(&sa.sa_mask);
sa.sa_handler = handler;