blob: 67367e3d7ca4f6c353ffd42f02a4decdd8b13be5 [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
10#include <stdio.h>
Eric Andersenc4cef5a2001-04-01 16:01:11 +000011#include "libbb.h"
Eric Andersenaad1a882001-03-16 22:47:14 +000012
13
Eric Andersenc7bda1c2004-03-15 08:29:22 +000014/* Busybox mount uses either /proc/mounts or /etc/mtab to
15 * get the list of currently mounted filesystems */
Denis Vlasenkod031ffa2006-11-24 21:54:44 +000016const char bb_path_mtab_file[] =
17USE_FEATURE_MTAB_SUPPORT("/etc/mtab")SKIP_FEATURE_MTAB_SUPPORT("/proc/mounts");