xref: /haiku/headers/posix/utime.h (revision d5cd5d63ff0ad395989db6cf4841a64d5b545d1d)
1 #ifndef _UTIME_H_
2 #define _UTIME_H_
3 /*
4 ** Distributed under the terms of the OpenBeOS License.
5 */
6 
7 #include <sys/types.h>
8 
9 
10 struct utimbuf
11 {
12 	time_t actime;		/* access time */
13 	time_t modtime;		/* modification time */
14 };
15 
16 
17 extern
18 #ifdef __cplusplus
19 "C"
20 #endif
21 int utime(const char *path, const struct utimbuf *buffer);
22 
23 #endif	/* _UTIME_H_ */
24