diff options
Diffstat (limited to 'libc/sysdeps/linux/common/umount.c')
-rw-r--r-- | libc/sysdeps/linux/common/umount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/umount.c b/libc/sysdeps/linux/common/umount.c index 9090696d5..453ecd27b 100644 --- a/libc/sysdeps/linux/common/umount.c +++ b/libc/sysdeps/linux/common/umount.c @@ -15,13 +15,13 @@ /* arch provides umount() syscall */ #ifdef __NR_umount -_syscall1(int, umount, const char *, specialfile); +_syscall1(int, umount, const char *, specialfile) /* arch provides umount2() syscall */ #elif defined __NR_umount2 # define __NR___syscall_umount2 __NR_umount2 -static __inline__ _syscall2(int, __syscall_umount2, const char *, special_file, int, flags); +static __inline__ _syscall2(int, __syscall_umount2, const char *, special_file, int, flags) int umount(const char *special_file) { |