summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sigsuspend.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-09 13:32:30 +0100
committerPeter S. Mazinger <ps.m@gmx.net>2011-03-09 13:32:30 +0100
commit1dd9275091d6cbb14d6b149770fc90cef53577cf (patch)
tree1f8fb532ac2e9756d1bf1ac658426253a92e4f92 /libc/sysdeps/linux/common/sigsuspend.c
parent92895c04f3033834ee512942014a9e643ba579a5 (diff)
remove trailing ';' from _syscallX()
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Diffstat (limited to 'libc/sysdeps/linux/common/sigsuspend.c')
-rw-r--r--libc/sysdeps/linux/common/sigsuspend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/sigsuspend.c b/libc/sysdeps/linux/common/sigsuspend.c
index 789eeda89..ded2aad5b 100644
--- a/libc/sysdeps/linux/common/sigsuspend.c
+++ b/libc/sysdeps/linux/common/sigsuspend.c
@@ -38,7 +38,7 @@ int sigsuspend (const sigset_t *set)
return result;
}
# else
-static inline _syscall2(int, __rt_sigsuspend, const sigset_t *, mask, size_t, size);
+static inline _syscall2(int, __rt_sigsuspend, const sigset_t *, mask, size_t, size)
int sigsuspend(const sigset_t * mask)
{