diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-06-19 20:03:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-06-19 20:03:48 +0000 |
commit | bd4a75f6c8e3c821a45f136eb6c21e71aa1450be (patch) | |
tree | fe8cf4622b7973cae5614de2da32a6a7bd24aedb /util-linux/umount.c | |
parent | bb245ba0c2238d6a6b19af151249cdb25afdca87 (diff) | |
download | busybox-w32-bd4a75f6c8e3c821a45f136eb6c21e71aa1450be.tar.gz busybox-w32-bd4a75f6c8e3c821a45f136eb6c21e71aa1450be.tar.bz2 busybox-w32-bd4a75f6c8e3c821a45f136eb6c21e71aa1450be.zip |
Finish off the libc5 porting effort. Everything now works with libc5
except for md5sum, which uses the GNU libc addition getline().
-Erik
Diffstat (limited to '')
-rw-r--r-- | util-linux/umount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c index 4aed989fb..61f7f9028 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -24,12 +24,12 @@ | |||
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "internal.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | //#include <sys/mount.h> | ||
28 | #include <mntent.h> | 27 | #include <mntent.h> |
29 | #include <errno.h> | 28 | #include <errno.h> |
30 | #include <linux/unistd.h> | 29 | #include <linux/unistd.h> |
31 | 30 | ||
32 | 31 | ||
32 | //#include <sys/mount.h> | ||
33 | /* Include our own version of sys/mount.h, since libc5 doesn't | 33 | /* Include our own version of sys/mount.h, since libc5 doesn't |
34 | * know about umount2 */ | 34 | * know about umount2 */ |
35 | static _syscall1(int, umount, const char *, special_file); | 35 | static _syscall1(int, umount, const char *, special_file); |