summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-16 05:20:10 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-16 05:20:10 +0000
commit5196d3e60656fe05f6b2070f428206d0e051290b (patch)
tree2496309bb3d115916e98d35fe6311a200959a4f7
parenta9c5c662d49e2f64995a7c7cf11e0121cdb7fe3d (diff)
whitespace cleanup
-rw-r--r--libc/sysdeps/linux/common/umount2.c8
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