summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-02-15 23:49:41 +0000
committerEric Andersen <andersen@codepoet.org>2003-02-15 23:49:41 +0000
commit7c9619d9cca422cdb2bda053c474dc477eea6a42 (patch)
tree0d0b10bc372712f80882494607cc40c8e1c991b9 /libc
parent6fefa715420bad76727a4105922e5419a52f753d (diff)
Add missing ';'s so powerpc will compile
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/syscalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c
index 89af9ec4b..23690e4b7 100644
--- a/libc/sysdeps/linux/common/syscalls.c
+++ b/libc/sysdeps/linux/common/syscalls.c
@@ -626,7 +626,7 @@ weak_alias(__libc_fcntl, fcntl)
#include <unistd.h>
#define __NR___syscall_setpgid __NR_setpgid
static inline
-_syscall2(int, __syscall_setpgid, __kernel_pid_t, pid, __kernel_pid_t, pgid)
+_syscall2(int, __syscall_setpgid, __kernel_pid_t, pid, __kernel_pid_t, pgid);
int setpgid(pid_t pid, pid_t pgid)
{
return(__syscall_setpgid(pid, pgid));
@@ -1432,7 +1432,7 @@ _syscall3(ssize_t, writev, int, filedes, const struct iovec *, vector, int,
#include <unistd.h>
#define __NR___syscall_getsid __NR_getsid
static inline
-_syscall1(__kernel_pid_t, __syscall_getsid, __kernel_pid_t, pid)
+_syscall1(__kernel_pid_t, __syscall_getsid, __kernel_pid_t, pid);
pid_t getsid(pid_t pid)
{
return(__syscall_getsid(pid));