From 37954c735c9b6cc309cbc6f628cf2b360eb14a11 Mon Sep 17 00:00:00 2001 From: pumnflqv2 Date: Tue, 5 Jul 2022 04:34:16 +0800 Subject: [PATCH] ADD file via upload --- 0/linux/include/utime.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 0/linux/include/utime.h diff --git a/0/linux/include/utime.h b/0/linux/include/utime.h new file mode 100644 index 0000000..83f07c7 --- /dev/null +++ b/0/linux/include/utime.h @@ -0,0 +1,13 @@ +#ifndef _UTIME_H +#define _UTIME_H + +#include /* I know - shouldn't do this, but .. */ + +struct utimbuf { + time_t actime; + time_t modtime; +}; + +extern int utime(const char *filename, struct utimbuf *times); + +#endif