aboutsummaryrefslogtreecommitdiff
path: root/utility.c
diff options
context:
space:
mode:
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 @@
36#include <unistd.h> 36#include <unistd.h>
37#include <ctype.h> 37#include <ctype.h>
38 38
39#ifdef BB_MTAB
40const char mtab_file[] = "/etc/mtab";
41#else
42#if defined BB_MOUNT || defined BB_UMOUNT || defined BB_DF
43const char mtab_file[] = "/proc/mounts";
44#endif
45#endif
46
47
39/* volatile so gcc knows this is the enod of the line */ 48/* volatile so gcc knows this is the enod of the line */
40volatile void usage(const char *usage) 49volatile void usage(const char *usage)
41{ 50{