summaryrefslogtreecommitdiffstats
path: root/src/include/utime.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utime.h')
-rw-r--r--src/include/utime.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/utime.h b/src/include/utime.h
new file mode 100644
index 0000000..83f07c7
--- /dev/null
+++ b/src/include/utime.h
@@ -0,0 +1,13 @@
1#ifndef _UTIME_H
2#define _UTIME_H
3
4#include <sys/types.h> /* I know - shouldn't do this, but .. */
5
6struct utimbuf {
7 time_t actime;
8 time_t modtime;
9};
10
11extern int utime(const char *filename, struct utimbuf *times);
12
13#endif