diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-15 14:06:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-15 14:06:44 +0000 |
commit | 80b0b55af2faa2e314d61d2f17fc24c9cfa94a34 (patch) | |
tree | 9944b254b1e5c829f1b7b099b129e563f19eae23 /libc/sysdeps/linux/common/syscalls.c | |
parent | 4d3c7f75e644c67e3110fa7ded9eb6af696f8ef2 (diff) |
Cleanup a few structural wierdnesses
Diffstat (limited to 'libc/sysdeps/linux/common/syscalls.c')
-rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 63c70e85a..9a91f2e65 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -1586,7 +1586,7 @@ _syscall2(int, sigaltstack, const struct sigaltstack *, ss, struct sigaltstack * #ifdef L_sendfile #include <unistd.h> #include <sys/sendfile.h> -_syscall4(ssize_t,sendfile, int, out_fd, int, in_fd, __off_t *, offset, size_t, count) +_syscall4(ssize_t,sendfile, int, out_fd, int, in_fd, __off_t *, offset, size_t, count); #endif #endif @@ -1672,7 +1672,7 @@ _syscall2(int, fstat64, int, filedes, struct stat64 *, buf); //#define __NR_pivot_root 217 #ifdef __NR_pivot_root #ifdef L_pivot_root -_syscall2(int, pivot_root, const char *, new_root, const char *, put_old) +_syscall2(int, pivot_root, const char *, new_root, const char *, put_old); #endif #endif |