mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
2005-02-22 Roland McGrath <roland@redhat.com>
* include/signal.h: Revert last change. (__sigemptyset): Use __builtin_memset instead of memset.
This commit is contained in:
parent
262b5730c0
commit
bd02f5fc17
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user