diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-01-16 05:20:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-01-16 05:20:10 +0000 |
commit | 5196d3e60656fe05f6b2070f428206d0e051290b (patch) | |
tree | 2496309bb3d115916e98d35fe6311a200959a4f7 | |
parent | a9c5c662d49e2f64995a7c7cf11e0121cdb7fe3d (diff) |
whitespace cleanup
-rw-r--r-- | libc/sysdeps/linux/common/umount2.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 <sys/mount.h> +#ifdef __NR_umount2 /* Old kernels don't have umount2 */ +#include <sys/mount.h> _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 |