From 5196d3e60656fe05f6b2070f428206d0e051290b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 16 Jan 2005 05:20:10 +0000 Subject: whitespace cleanup --- libc/sysdeps/linux/common/umount2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libc/sysdeps') diff --git a/libc/sysdeps/linux/common/umount2.c b/libc/sysdeps/linux/common/umount2.c index 4701ac077..467ec1dbc 100644 --- a/libc/sysdeps/linux/common/umount2.c +++ b/libc/sysdeps/linux/common/umount2.c @@ -8,13 +8,13 @@ */ #include "syscalls.h" -# ifdef __NR_umount2 /* Old kernels don't have umount2 */ -# include +#ifdef __NR_umount2 /* Old kernels don't have umount2 */ +#include _syscall2(int, umount2, const char *, special_file, int, flags); -# else +#else int umount2(const char *special_file, int flags) { __set_errno(ENOSYS); return -1; } -# endif +#endif -- cgit v1.2.3