]> git.lizzy.rs Git - plan9front.git/blob - sys/include/ape/utime.h
libsec: use tsmemcmp() when comparing hashes, use mpfield() for ecc, use mptober...
[plan9front.git] / sys / include / ape / utime.h
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