blob: 3821a6806e8e284e31aeebf26995257165d9e97c [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 */
Mike Frysingerb9531342005-07-30 08:48:10 +000016#if defined(CONFIG_FEATURE_MTAB_SUPPORT)
17const char bb_path_mtab_file[] = "/etc/mtab";
Eric Andersenaad1a882001-03-16 22:47:14 +000018#else
Manuel Novoa III cad53642003-03-19 09:13:01 +000019const char bb_path_mtab_file[] = "/proc/mounts";
Eric Andersenaad1a882001-03-16 22:47:14 +000020#endif