aboutsummaryrefslogtreecommitdiff
path: root/utility.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-04 21:18:07 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-04 21:18:07 +0000
commitd0246fb72b40320a74376af1bb944fef2c9b734f (patch)
tree9fa93d2acf052107f2b682ce2e77725eb7ec9d84 /utility.c
parent3ae0c789627a29dbd76793eb666efe19144b30f0 (diff)
downloadbusybox-d0246fb72b40320a74376af1bb944fef2c9b734f.tar.gz
More stuff.
Diffstat (limited to 'utility.c')
-rw-r--r--utility.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/utility.c b/utility.c
index 26568320f..125e819ed 100644
--- a/utility.c
+++ b/utility.c
@@ -36,6 +36,15 @@
#include <unistd.h>
#include <ctype.h>
+#ifdef BB_MTAB
+const char mtab_file[] = "/etc/mtab";
+#else
+#if defined BB_MOUNT || defined BB_UMOUNT || defined BB_DF
+const char mtab_file[] = "/proc/mounts";
+#endif
+#endif
+
+
/* volatile so gcc knows this is the enod of the line */
volatile void usage(const char *usage)
{