2005-02-22 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Tue, 22 Feb 2005 23:18:11 +0000 (23:18 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 22 Feb 2005 23:18:11 +0000 (23:18 +0000)
* include/signal.h: Revert last change.
(__sigemptyset): Use __builtin_memset instead of memset.

include/signal.h

index 5f07844..2be67ba 100644 (file)
@@ -50,8 +50,7 @@ extern int __xpg_sigpause (int sig);
 
 /* Simplified sigemptyset() implementation without the parameter checking.  */
 #undef __sigemptyset
-#include <string.h>
-#define __sigemptyset(ss) (memset (ss, '\0', sizeof (sigset_t)), 0)
+#define __sigemptyset(ss) (__builtin_memset (ss, '\0', sizeof (sigset_t)), 0)
 
 
 /* Allocate real-time signal with highest/lowest available priority.  */