summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-09-20 18:46:55 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-09-20 18:46:55 -0400
commitecc7b3249050c17e089d6a812472d2923d572bcc (patch)
treede926cbba87c789549c85a8b1a389d09a155f995 /util.h
parentbbbf8f6e296e3d80775d0ee0c41c445bbb721402 (diff)
downloadbfs-ecc7b3249050c17e089d6a812472d2923d572bcc.tar.xz
util: Wrap faccessat() to fix some portability issues
Diffstat (limited to 'util.h')
-rw-r--r--util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/util.h b/util.h
index 57123e0..8f285d3 100644
--- a/util.h
+++ b/util.h
@@ -143,6 +143,11 @@ void format_mode(mode_t mode, char str[11]);
const char *xbasename(const char *path);
/**
+ * Wrapper for faccessat() that handles some portability issues.
+ */
+int xfaccessat(int fd, const char *path, int amode);
+
+/**
* Return whether an error code is due to a path not existing.
*/
bool is_nonexistence_error(int error);