]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/faccessat.c
Inital import
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / common / faccessat.c
1 /*
2  * faccessat() for uClibc
3  *
4  * Copyright (C) 2009 Analog Devices Inc.
5  *
6  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7  */
8
9 #include <sys/syscall.h>
10 #include <unistd.h>
11
12 #ifdef __NR_faccessat
13 _syscall4(int, faccessat, int, fd, const char *, file, int, type, int, flag)
14 #else
15 /* should add emulation with faccess() and /proc/self/fd/ ... */
16 #endif