summaryrefslogtreecommitdiffstats
path: root/src/include/utime.h
diff options
context:
space:
mode:
authorWe-unite <3205135446@qq.com>2025-01-23 10:41:10 +0800
committerWe-unite <3205135446@qq.com>2025-01-23 10:41:10 +0800
commite6f77b7ea3e38c9853bee60b275f3f89d252a5b3 (patch)
tree80bfbabed9d4cbcf9fa62677f78b34279d7e2f87 /src/include/utime.h
downloadlinux-0.11-e6f77b7ea3e38c9853bee60b275f3f89d252a5b3.tar.gz
linux-0.11-e6f77b7ea3e38c9853bee60b275f3f89d252a5b3.zip
Initial commit, makee it usable on newest linuxHEADmaster
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