aboutsummaryrefslogtreecommitdiff
path: root/open_issues/faccessat/faccessat.c
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2012-07-12 12:58:46 +0200
committerThomas Schwinge <thomas@codesourcery.com>2012-07-12 12:58:46 +0200
commit716ef78f951c355e978e869aa437212facecd7ac (patch)
tree3669facc48c573cf50df470d16e6e5a12a83cd13 /open_issues/faccessat/faccessat.c
parenta8993a3d2c1ce9e3aba4b35c83c30ab547c5bbb3 (diff)
parent59344d6c9615e22ecad1e9860b7e287bd92ea6fa (diff)
downloadweb-716ef78f951c355e978e869aa437212facecd7ac.tar.gz
web-716ef78f951c355e978e869aa437212facecd7ac.tar.bz2
web-716ef78f951c355e978e869aa437212facecd7ac.zip
Merge remote-tracking branch 'savannah/master'
Diffstat (limited to 'open_issues/faccessat/faccessat.c')
-rw-r--r--open_issues/faccessat/faccessat.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/open_issues/faccessat/faccessat.c b/open_issues/faccessat/faccessat.c
new file mode 100644
index 00000000..24b1233c
--- /dev/null
+++ b/open_issues/faccessat/faccessat.c
@@ -0,0 +1,26 @@
+#include <fcntl.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <errno.h>
+#include <string.h>
+#include <stdlib.h>
+
+#define TESTFN "faccessat-test-file"
+
+int main()
+{
+ int fd;
+ int ret;
+
+ system("touch " TESTFN );
+ fd = open(".", O_RDONLY);
+ printf("> open: %d\n", fd);
+
+ errno = 0;
+ ret = faccessat(fd, TESTFN, R_OK, 0);
+ printf("> faccessat: %d, %d (%s)\n", ret, errno, strerror(errno));
+
+ close(fd);
+
+ return 0;
+}