diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-12 21:56:14 +0100 | 
|---|---|---|
| committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:22 +0200 | 
| commit | db19d8d0a9b2ad0cd805944042137de166c4c94d (patch) | |
| tree | 2ac5dd4d497c018085acddf677ab6d0e07783cb8 /libpthread/linuxthreads | |
| parent | d2b80a39961efbebeda9f4543179c11d4d6a0b26 (diff) | |
signal.h: provide prototype for __libc_sigaction and remove all others
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/linuxthreads')
| -rw-r--r-- | libpthread/linuxthreads/pthread.c | 3 | ||||
| -rw-r--r-- | libpthread/linuxthreads/signals.c | 3 | 
2 files changed, 0 insertions, 6 deletions
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index 66efe3a25..ade21dc1a 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -37,9 +37,6 @@  # error "This must not happen"  #endif -/* mods for uClibc: __libc_sigaction is not in any standard headers */ -extern __typeof(sigaction) __libc_sigaction; -  #if !(USE_TLS && HAVE___THREAD)  /* These variables are used by the setup code.  */  extern int _errno; diff --git a/libpthread/linuxthreads/signals.c b/libpthread/linuxthreads/signals.c index 61b411aba..672b8e4d9 100644 --- a/libpthread/linuxthreads/signals.c +++ b/libpthread/linuxthreads/signals.c @@ -20,9 +20,6 @@  #include "internals.h"  #include "spinlock.h" -/* mods for uClibc: __libc_sigaction is not in any standard headers */ -extern __typeof(sigaction) __libc_sigaction; -  int pthread_sigmask(int how, const sigset_t * newmask, sigset_t * oldmask)  {    sigset_t mask;  | 
