traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / libbb / mtab_file.c
index 92bd2394f60284fed7104ece3db38e36d06f49b6..c9d9a695e73ff03c7a1e8eae0f1b9ae7393bd589 100644 (file)
@@ -7,11 +7,9 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <stdio.h>
 #include "libbb.h"
 
-
 /* Busybox mount uses either /proc/mounts or /etc/mtab to
  * get the list of currently mounted filesystems */
-char bb_path_mtab_file[] =     USE_FEATURE_MTAB_SUPPORT("/etc/mtab")
-                                                       SKIP_FEATURE_MTAB_SUPPORT("/proc/mounts");
+const char bb_path_mtab_file[] ALIGN1 =
+IF_FEATURE_MTAB_SUPPORT("/etc/mtab")IF_NOT_FEATURE_MTAB_SUPPORT("/proc/mounts");