summaryrefslogtreecommitdiff
path: root/src/utime
diff options
context:
space:
mode:
Diffstat (limited to 'src/utime')
-rw-r--r--src/utime/struct_utimbuf.c15
-rw-r--r--src/utime/time_t.ref4
-rw-r--r--src/utime/utime.c16
3 files changed, 0 insertions, 35 deletions
diff --git a/src/utime/struct_utimbuf.c b/src/utime/struct_utimbuf.c
deleted file mode 100644
index 8a2a3b90..00000000
--- a/src/utime/struct_utimbuf.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#if 0
-
-#include <utime.h>
-
-struct utimbuf {
- time_t actime;
- time_t modtime;
-};
-
-/*
-POSIX(1)
-*/
-
-
-#endif
diff --git a/src/utime/time_t.ref b/src/utime/time_t.ref
deleted file mode 100644
index 4920b205..00000000
--- a/src/utime/time_t.ref
+++ /dev/null
@@ -1,4 +0,0 @@
-#include <utime.h>
-REFERENCE(time/time_t.c)
-XOPEN(4)
-POSIX(200112)
diff --git a/src/utime/utime.c b/src/utime/utime.c
deleted file mode 100644
index d7972d7a..00000000
--- a/src/utime/utime.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <time.h>
-#include <utime.h>
-#include "_syscall.h"
-
-int utime(const char *path, const struct utimbuf *times)
-{
- SYSCALL(utime, int, -1, path, times, 0, 0, 0, 0);
-}
-/*
-POSIX(1)
-*/
-
-
-#endif