Ignore:
Timestamp:
Nov 4, 2007, 3:16:40 AM (17 years ago)
Author:
Bruno Cornec
Message:

Update to busybox 1.7.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi-busybox/libbb/mtab_file.c

    r821 r1765  
    88 */
    99
    10 #include <stdio.h>
    1110#include "libbb.h"
    12 
    1311
    1412/* Busybox mount uses either /proc/mounts or /etc/mtab to
    1513 * get the list of currently mounted filesystems */
    16 #if defined(CONFIG_FEATURE_MTAB_SUPPORT)
    17 const char bb_path_mtab_file[] = "/etc/mtab";
    18 #else
    19 const char bb_path_mtab_file[] = "/proc/mounts";
    20 #endif
     14const char bb_path_mtab_file[] ALIGN1 =
     15USE_FEATURE_MTAB_SUPPORT("/etc/mtab")SKIP_FEATURE_MTAB_SUPPORT("/proc/mounts");
Note: See TracChangeset for help on using the changeset viewer.