xref: /plan9/sys/include/ape/utime.h (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
1 #ifndef __UTIME_H
2 #define __UTIME_H
3 
4 #pragma lib "/$M/lib/ape/libap.a"
5 
6 struct utimbuf
7 {
8 	time_t actime;
9 	time_t modtime;
10 };
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 extern int utime(const char *, const struct utimbuf *);
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif
23