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