diff options
Diffstat (limited to 'include/utime.h')
-rw-r--r-- | include/utime.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/utime.h b/include/utime.h new file mode 100644 index 000000000..7f82b9fa6 --- /dev/null +++ b/include/utime.h @@ -0,0 +1,15 @@ +#ifndef __UTIME_H +#define __UTIME_H + +#include <features.h> +#include <sys/types.h> + +struct utimbuf { + time_t actime; + time_t modtime; +}; + +extern int utime __P ((char *__filename, struct utimbuf *__utimebuf)); + +#endif + |