diff options
Diffstat (limited to 'include/mpw/utime.h')
-rw-r--r-- | include/mpw/utime.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mpw/utime.h b/include/mpw/utime.h new file mode 100644 index 0000000..e8bf66f --- /dev/null +++ b/include/mpw/utime.h @@ -0,0 +1,7 @@ + +struct utimbuf { + time_t actime; + time_t modtime; +}; + +int utime (char *, struct utimbuf *); |