chiark / gitweb /
basic: mark unused variable as such
[elogind.git] / src / basic / fs-util.h
index 294d617cd761d9e2f81e8444d558347e80685339..2000b38a96738230e43df68dca4c802750ee8117 100644 (file)
@@ -51,7 +51,12 @@ int fchmod_umask(int fd, mode_t mode);
 
 int fd_warn_permissions(const char *path, int fd);
 
+#ifdef __GLIBC__
 #define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), AT_SYMLINK_NOFOLLOW)
+#else
+#define laccess(path, mode) faccessat(AT_FDCWD, (path), (mode), 0)
+#endif
+
 
 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
 int touch(const char *path);