summaryrefslogtreecommitdiff
path: root/src/utime
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 15:45:38 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 15:45:38 -0500
commitbafccb2f57ac1a1852be2d6aafe33cf02d1630c1 (patch)
treea6164b42b37b941cb64bbc3db8af7a1daf381ace /src/utime
parent910a86c095b6d7311d73fa88a632aa9b673243b2 (diff)
update dependencies
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