1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-10 05:03:06 +03:00

Avoid comma operator warnings.

This commit is contained in:
Roland McGrath
2014-02-07 15:26:28 -08:00
parent d5b396c1c8
commit 32749f6cd2
4 changed files with 18 additions and 6 deletions

View File

@@ -55,7 +55,8 @@ extern int __xpg_sigpause (int sig);
/* Simplified sigemptyset() implementation without the parameter checking. */
#undef __sigemptyset
#define __sigemptyset(ss) (__builtin_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. */