summaryrefslogtreecommitdiff
path: root/src/stat/__fxstatat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/__fxstatat.c')
-rw-r--r--src/stat/__fxstatat.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stat/__fxstatat.c b/src/stat/__fxstatat.c
new file mode 100644
index 00000000..e389dec7
--- /dev/null
+++ b/src/stat/__fxstatat.c
@@ -0,0 +1,9 @@
+#include <sys/stat.h>
+#include "libc.h"
+
+int __fxstatat(int ver, int fd, const char *path, struct stat *buf, int flag)
+{
+ return fstatat(fd, path, buf, flag);
+}
+
+LFS64(__fxstatat);