diff options
Diffstat (limited to 'include/utime.h')
| -rw-r--r-- | include/utime.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/utime.h b/include/utime.h new file mode 100644 index 00000000..404d7003 --- /dev/null +++ b/include/utime.h @@ -0,0 +1,11 @@ +#ifndef __UTIME_H +#define __UTIME_H + +struct utimbuf { + long actime; + long modtime; +}; + +int utime(const char *, const struct utimbuf *); + +#endif |
