xref: /haiku/headers/posix/utime.h (revision db10640de90f7f9519ba2da9577b7c1af3c64f6b)
1 #ifndef _UTIME_H_
2 #define _UTIME_H_
3 /*
4 ** Distributed under the terms of the OpenBeOS License.
5 */
6 
7 
8 #include <sys/types.h>
9 
10 
11 struct utimbuf {
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