From a282200d7a5830db536a1bc98af517064945e6bd Mon Sep 17 00:00:00 2001 From: pumnflqv2 Date: Sun, 26 Jun 2022 21:48:41 +0800 Subject: [PATCH] ADD file via upload --- include/utime.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/utime.h diff --git a/include/utime.h b/include/utime.h new file mode 100644 index 0000000..83f07c7 --- /dev/null +++ b/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