diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-07-01 10:35:05 -0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-07-01 10:35:05 -0300 |
commit | e9990192bb52a2c6085d4c4d355c6ad9d8bdac67 (patch) | |
tree | 35e4049bcce5d1f3179fe58da0348bc4e6cfb16b /open_issues/faccessat/faccessat.c | |
parent | 4f2ceacfd87f5071e34ccfc37916778226294161 (diff) | |
parent | 59344d6c9615e22ecad1e9860b7e287bd92ea6fa (diff) | |
download | web-e9990192bb52a2c6085d4c4d355c6ad9d8bdac67.tar.gz web-e9990192bb52a2c6085d4c4d355c6ad9d8bdac67.tar.bz2 web-e9990192bb52a2c6085d4c4d355c6ad9d8bdac67.zip |
Merge branch 'master' of http://git.savannah.gnu.org/cgit/hurd/web
Diffstat (limited to 'open_issues/faccessat/faccessat.c')
-rw-r--r-- | open_issues/faccessat/faccessat.c | 26 |
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; +} |