summaryrefslogtreecommitdiff
path: root/src/sys/stat/fstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/stat/fstat.c')
-rw-r--r--src/sys/stat/fstat.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sys/stat/fstat.c b/src/sys/stat/fstat.c
new file mode 100644
index 00000000..bdd9f574
--- /dev/null
+++ b/src/sys/stat/fstat.c
@@ -0,0 +1,11 @@
+#include "sys/types.h"
+#include <sys/stat.h>
+
+int fstat(int fildes, struct stat *buf)
+{
+ (void)fildes; (void)buf;
+ return 0;
+}
+/*
+POSIX(1)
+*/