[uClibc-cvs] CVS uClibc/libc/sysdeps/linux/common

CVS User andersen andersen at codepoet.org
Sun Jan 16 05:20:11 UTC 2005


Update of /var/cvs/uClibc/libc/sysdeps/linux/common
In directory nail:/tmp/cvs-serv17283

Modified Files:
	umount2.c 
Log Message:
whitespace cleanup


--- /var/cvs/uClibc/libc/sysdeps/linux/common/umount2.c	2005/01/05 23:11:09	1.2
+++ /var/cvs/uClibc/libc/sysdeps/linux/common/umount2.c	2005/01/16 05:20:10	1.3
@@ -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



More information about the uClibc-cvs mailing list