summaryrefslogtreecommitdiff
path: root/include/utime.h
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-05-14 04:16:35 +0000
committerErik Andersen <andersen@codepoet.org>2000-05-14 04:16:35 +0000
commit64bc6412188b141c010ac3b8e813b837dd991e80 (patch)
treeffa12b79ea4b13191754f54b872eb1a4f9e3a04b /include/utime.h
Initial revision
Diffstat (limited to 'include/utime.h')
-rw-r--r--include/utime.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/utime.h b/include/utime.h
new file mode 100644
index 000000000..7f82b9fa6
--- /dev/null
+++ b/include/utime.h
@@ -0,0 +1,15 @@
+#ifndef __UTIME_H
+#define __UTIME_H
+
+#include <features.h>
+#include <sys/types.h>
+
+struct utimbuf {
+ time_t actime;
+ time_t modtime;
+};
+
+extern int utime __P ((char *__filename, struct utimbuf *__utimebuf));
+
+#endif
+