aboutsummaryrefslogtreecommitdiff
path: root/util-linux/umount.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-08 19:20:49 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-08 19:20:49 +0000
commita57ba4db64d5b2e8d9f7e9ab15ac32d1c1abdea5 (patch)
treec3b20d70c757a11aaffbb6a0c056044c9ebf68f1 /util-linux/umount.c
parent2cd439f7f075c4b6b6c32412a8e1311d589202e3 (diff)
downloadbusybox-a57ba4db64d5b2e8d9f7e9ab15ac32d1c1abdea5.tar.gz
Argh. More cross libc cleanup. Should be ok now...
-Erik
Diffstat (limited to 'util-linux/umount.c')
-rw-r--r--util-linux/umount.c23
1 files changed, 5 insertions, 18 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c
index 4f6edc2e5..fc9b466c6 100644
--- a/util-linux/umount.c
+++ b/util-linux/umount.c
@@ -26,31 +26,18 @@
#include <stdio.h>
#include <mntent.h>
#include <errno.h>
-#include <linux/unistd.h>
-#ifndef MNT_FORCE
#define MNT_FORCE 1
-#endif
-#ifndef MS_MGC_VAL
#define MS_MGC_VAL 0xc0ed0000 /* Magic number indicatng "new" flags */
-#endif
-#ifndef MS_REMOUNT
#define MS_REMOUNT 32 /* Alter flags of a mounted FS. */
-#endif
-#ifndef MS_RDONLY
#define MS_RDONLY 1 /* Mount read-only. */
-#endif
-#ifndef __NR_umount2
-#define __NR_umount2 52
-#endif
-/* Include our own version of <sys/mount.h>, since libc5 doesn't
- * know about umount2 */
-static _syscall1(int, umount, const char *, special_file);
-static _syscall2(int, umount2, const char *, special_file, int, flags);
-static _syscall5(int, mount, const char *, special_file, const char *, dir,
- const char *, fstype, unsigned long int, rwflag, const void *, data);
+extern int mount (__const char *__special_file, __const char *__dir,
+ __const char *__fstype, unsigned long int __rwflag,
+ __const void *__data);
+extern int umount (__const char *__special_file);
+extern int umount2 (__const char *__special_file, int __flags);