summaryrefslogtreecommitdiff
path: root/src/sys/time/utimes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/time/utimes.c')
-rw-r--r--src/sys/time/utimes.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/time/utimes.c b/src/sys/time/utimes.c
new file mode 100644
index 00000000..502f2b5b
--- /dev/null
+++ b/src/sys/time/utimes.c
@@ -0,0 +1,10 @@
+#include <sys/time.h>
+
+int utimes(const char *path, const struct timeval times[2])
+{
+ return 0;
+}
+
+/*
+XOPEN(400)
+*/