svn commit: trunk/uClibc/libc/signal

vapier at uclibc.org vapier at uclibc.org
Sun Jan 29 15:51:14 UTC 2006


Author: vapier
Date: 2006-01-29 07:51:14 -0800 (Sun, 29 Jan 2006)
New Revision: 13672

Log:
create local prototype for __libc_sigaction

Modified:
   trunk/uClibc/libc/signal/sigaction.c


Changeset:
Modified: trunk/uClibc/libc/signal/sigaction.c
===================================================================
--- trunk/uClibc/libc/signal/sigaction.c	2006-01-29 15:44:35 UTC (rev 13671)
+++ trunk/uClibc/libc/signal/sigaction.c	2006-01-29 15:51:14 UTC (rev 13672)
@@ -16,6 +16,7 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
+#include <features.h>
 #include <errno.h>
 #include <signal.h>
 #include <string.h>
@@ -29,6 +30,10 @@
    translate it here.  */
 #include <bits/kernel_sigaction.h>
 
+#ifndef LIBC_SIGACTION
+extern __typeof(sigaction) __libc_sigaction;
+#endif
+
 #if defined __NR_rt_sigaction
 
 /* If ACT is not NULL, change the action for SIG to *ACT.




More information about the uClibc-cvs mailing list