Displaying 1 result from an estimated 1 matches for "8cb2877".
Did you mean:
82877
2010 Apr 16
0
[PATCH] add minimal faccessat()
...CESS
+# define AT_EACCESS 0x200
+#endif
+
/* This is ugly, but "struct flock" has actually been defined with
a long off_t, so it's really "struct flock64". It just happens
to work. Gag. Barf.
diff --git a/usr/include/unistd.h b/usr/include/unistd.h
index 547e717..8cb2877 100644
--- a/usr/include/unistd.h
+++ b/usr/include/unistd.h
@@ -58,7 +58,7 @@ __extern int setfsuid(uid_t);
#define F_OK 0 /* Existence */
__extern int access(const char *, int);
-__extern int faccessat(int, const char *, int);
+__extern int faccessat(int, const char *, int, int);
__extern i...