diff --git a/include/utime.h b/include/utime.h new file mode 100644 index 0000000..8d71d2f --- /dev/null +++ b/include/utime.h @@ -0,0 +1,13 @@ +#ifndef NEWLIBGLUE_UTIME_H +#define NEWLIBGLUE_UTIME_H + +#include + +struct utimbuf { + time_t actime; + time_t modtime; +}; + +int utime(const char *path, const struct utimbuf *times); + +#endif /* NEWLIBGLUE_TIME_H */