| 1 | #ifndef	_UTIME_H |
| 2 | #define	_UTIME_H |
| 3 | |
| 4 | #ifdef __cplusplus |
| 5 | extern "C" { |
| 6 | #endif |
| 7 | |
| 8 | #include <features.h> |
| 9 | |
| 10 | #define __NEED_time_t |
| 11 | |
| 12 | #include <bits/alltypes.h> |
| 13 | |
| 14 | struct utimbuf { |
| 15 | 	time_t actime; |
| 16 | 	time_t modtime; |
| 17 | }; |
| 18 | |
| 19 | int utime (const char *, const struct utimbuf *); |
| 20 | |
| 21 | #if _REDIR_TIME64 |
| 22 | __REDIR(utime, __utime64); |
| 23 | #endif |
| 24 | |
| 25 | #ifdef __cplusplus |
| 26 | } |
| 27 | #endif |
| 28 | |
| 29 | #endif |