diff options
author | 2025-01-23 10:41:10 +0800 | |
---|---|---|
committer | 2025-01-23 10:41:10 +0800 | |
commit | e6f77b7ea3e38c9853bee60b275f3f89d252a5b3 (patch) | |
tree | 80bfbabed9d4cbcf9fa62677f78b34279d7e2f87 /src/include/utime.h | |
download | linux-0.11-e6f77b7ea3e38c9853bee60b275f3f89d252a5b3.tar.gz linux-0.11-e6f77b7ea3e38c9853bee60b275f3f89d252a5b3.zip |
Diffstat (limited to 'src/include/utime.h')
-rw-r--r-- | src/include/utime.h | 13 |
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 | |||
6 | struct utimbuf { | ||
7 | time_t actime; | ||
8 | time_t modtime; | ||
9 | }; | ||
10 | |||
11 | extern int utime(const char *filename, struct utimbuf *times); | ||
12 | |||
13 | #endif | ||