diff options
author | Rob Landley <rob@landley.net> | 2006-06-15 15:49:36 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-06-15 15:49:36 +0000 |
commit | 22d26fc6ae2af584482deaf92f25bb6a7261ad78 (patch) | |
tree | 3e9e7c2b43314acdd1f4db7e3a89a3c69daf814a /util-linux/umount.c | |
parent | d6e5083d16c940e36312f4a1b52317dcfc32c011 (diff) | |
download | busybox-w32-22d26fc6ae2af584482deaf92f25bb6a7261ad78.tar.gz busybox-w32-22d26fc6ae2af584482deaf92f25bb6a7261ad78.tar.bz2 busybox-w32-22d26fc6ae2af584482deaf92f25bb6a7261ad78.zip |
Patch from Yann Morin to put BLKGETSIZE64 in platform.h had rather a lot of
fallout due to the #include <sys/mount.h>. Removed that #include from various
applets and fixed up those that were unhappy when that #include was made
because they'd block copied stuff out of it. (Sigh.)
Diffstat (limited to 'util-linux/umount.c')
-rw-r--r-- | util-linux/umount.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c index 7efb636db..b5696f78b 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -11,15 +11,11 @@ | |||
11 | * | 11 | * |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <limits.h> | 14 | #include "busybox.h" |
15 | #include <stdio.h> | ||
16 | #include <mntent.h> | 15 | #include <mntent.h> |
17 | #include <errno.h> | 16 | #include <errno.h> |
18 | #include <string.h> | 17 | #include <string.h> |
19 | #include <stdlib.h> | ||
20 | #include <sys/mount.h> | ||
21 | #include <getopt.h> | 18 | #include <getopt.h> |
22 | #include "busybox.h" | ||
23 | 19 | ||
24 | #define OPTION_STRING "flDnrvad" | 20 | #define OPTION_STRING "flDnrvad" |
25 | #define OPT_FORCE 1 | 21 | #define OPT_FORCE 1 |