diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-05 21:57:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-05 21:57:47 +0000 |
commit | bf295dd5b67c1e192600f3510de2d5d1e686c685 (patch) | |
tree | 652596d819687154790512fc68b2047290c9efc9 /include/libbb.h | |
parent | df5bbb938ae73cf668778d1d54718fddb0f76130 (diff) |
[u]mount: extend -t option (Roy Marples <uberlord@gentoo.org>)
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index b56352626..dca611b68 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -17,6 +17,7 @@ #include <errno.h> #include <fcntl.h> #include <inttypes.h> +#include <mntent.h> #include <netdb.h> #include <setjmp.h> #include <signal.h> @@ -657,6 +658,7 @@ extern struct BB_applet *find_applet_by_name(const char *name); extern void run_applet_by_name(const char *name, int argc, char **argv); #endif +extern int match_fstype(const struct mntent *mt, const char *fstypes); extern struct mntent *find_mount_point(const char *name, const char *table); extern void erase_mtab(const char * name); extern unsigned int tty_baud_to_value(speed_t speed); |