blob: 030b148d38459cf1e480077097530922c197c8d5 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
9
Eric Andersenc4cef5a2001-04-01 16:01:11 +000010#include "libbb.h"
Eric Andersenaad1a882001-03-16 22:47:14 +000011
Eric Andersenc7bda1c2004-03-15 08:29:22 +000012/* Busybox mount uses either /proc/mounts or /etc/mtab to
13 * get the list of currently mounted filesystems */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000014const char bb_path_mtab_file[] ALIGN1 =
Denis Vlasenkod031ffa2006-11-24 21:54:44 +000015USE_FEATURE_MTAB_SUPPORT("/etc/mtab")SKIP_FEATURE_MTAB_SUPPORT("/proc/mounts");