summaryrefslogtreecommitdiffstats
path: root/mtab.c
diff options
context:
space:
mode:
Diffstat (limited to 'mtab.c')
-rw-r--r--mtab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mtab.c b/mtab.c
index 8c581d6..7d38a72 100644
--- a/mtab.c
+++ b/mtab.c
@@ -17,7 +17,7 @@
#include <sys/stat.h>
#include <sys/types.h>
-#if __linux__
+#if __GLIBC__
# include <mntent.h>
#elif BSD
# include <sys/mount.h>
@@ -71,7 +71,7 @@ static int bfs_mtab_push(struct bfs_mtab *mtab, dev_t dev, const char *type) {
}
struct bfs_mtab *parse_bfs_mtab() {
-#if __linux__
+#if __GLIBC__
FILE *file = setmntent(_PATH_MOUNTED, "r");
if (!file) {