summaryrefslogtreecommitdiffstats
path: root/mtab.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2018-01-08 21:43:23 -0500
committerTavian Barnes <tavianator@tavianator.com>2018-01-08 21:52:50 -0500
commit50432108fb3ef826301626b94c5e82ad2ab2bd75 (patch)
treeed8946e5ab8bac5adda495e9c8ca67a8ac99fd19 /mtab.h
parent7d68aac4a50ab4d4881832bc7de568c2b5d4ea8b (diff)
downloadbfs-50432108fb3ef826301626b94c5e82ad2ab2bd75.tar.xz
stat: New wrapper around the stat() family
This lets bfs transparently support the new statx() system call on Linux, giving it access to file birth times.
Diffstat (limited to 'mtab.h')
-rw-r--r--mtab.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mtab.h b/mtab.h
index cb29fa3..f23c036 100644
--- a/mtab.h
+++ b/mtab.h
@@ -17,7 +17,7 @@
#ifndef BFS_MTAB_H
#define BFS_MTAB_H
-#include <sys/stat.h>
+#include "stat.h"
/**
* A file system mount table.
@@ -37,11 +37,11 @@ struct bfs_mtab *parse_bfs_mtab(void);
* @param mtab
* The current mount table.
* @param statbuf
- * The stat() buffer for the file in question.
+ * The bfs_stat() buffer for the file in question.
* @return The type of file system containing this file, "unknown" if not known,
* or NULL on error.
*/
-const char *bfs_fstype(const struct bfs_mtab *mtab, const struct stat *statbuf);
+const char *bfs_fstype(const struct bfs_mtab *mtab, const struct bfs_stat *statbuf);
/**
* Free a mount table.