From 549fa53225910f5341092d6647a1e3dd705b605f Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 26 Jan 2012 15:15:23 +0100 Subject: *: silence some warnings warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/ia64/bits/syscalls.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'libc/sysdeps/linux/ia64') diff --git a/libc/sysdeps/linux/ia64/bits/syscalls.h b/libc/sysdeps/linux/ia64/bits/syscalls.h index 90297596b..ae09687de 100644 --- a/libc/sysdeps/linux/ia64/bits/syscalls.h +++ b/libc/sysdeps/linux/ia64/bits/syscalls.h @@ -62,6 +62,7 @@ _retval = _r8; #define INLINE_SYSCALL_NCS(name, nr, args...) \ +(__extension__ \ ({ \ DO_INLINE_SYSCALL_NCS (name, nr, args) \ if (unlikely (_r10 == -1)) \ @@ -69,16 +70,20 @@ __set_errno (_retval); \ _retval = -1; \ } \ - _retval; }) + _retval; \ + }) \ +) #define INTERNAL_SYSCALL_DECL(err) long int err #define INTERNAL_SYSCALL_NCS(name, err, nr, args...) \ +(__extension__ \ ({ \ DO_INLINE_SYSCALL_NCS (name, nr, args) \ err = _r10; \ - _retval; }) - + _retval; \ + }) \ +) #define INTERNAL_SYSCALL_ERROR_P(val, err) (err == -1) #define INTERNAL_SYSCALL_ERRNO(val, err) (val) -- cgit v1.2.3