diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-26 15:15:23 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-01-26 15:15:23 +0100 |
commit | 549fa53225910f5341092d6647a1e3dd705b605f (patch) | |
tree | 04a37070ddefbeeb9def964aa2690d9d75e4c756 /libc/sysdeps/linux/m68k | |
parent | ba48da4e3c8aa2478f30f7e3b745f3a355ed9442 (diff) |
*: silence some warnings
warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/m68k')
-rw-r--r-- | libc/sysdeps/linux/m68k/bits/syscalls.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/m68k/bits/syscalls.h b/libc/sysdeps/linux/m68k/bits/syscalls.h index 2c56613e4..17966ed06 100644 --- a/libc/sysdeps/linux/m68k/bits/syscalls.h +++ b/libc/sysdeps/linux/m68k/bits/syscalls.h @@ -45,6 +45,7 @@ normally. It will never touch errno. This returns just what the kernel gave back. */ #define INTERNAL_SYSCALL_NCS(name, err, nr, args...) \ +(__extension__ \ ({ unsigned int _sys_result; \ { \ /* Load argument values in temporary variables @@ -59,8 +60,9 @@ : "memory"); \ _sys_result = _d0; \ } \ - (int) _sys_result; }) - + (int) _sys_result; \ + }) \ +) #define LOAD_ARGS_0() #define LOAD_REGS_0 #define ASM_ARGS_0 |