Usermode/libposix - Updates to get curl and netsurf compiled
[tpg/acess2.git] / Usermode / Libraries / libposix.so_src / include_exp / utime.h
1 /*
2  * Acess2 POSIX Emulation Layer
3  * - By John Hodge
4  * 
5  * utime.h
6  * - 
7  */
8 #ifndef _LIBPOSIX__UTIME_H_
9 #define _LIBPOSIX__UTIME_H_
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 #include <sys/types.h>  // time_t
16
17 struct utimbuf {
18         time_t  actime;         // access time
19         time_t  modtime;        // modifcation time
20 };
21
22 extern int      utime(const char *filename, const struct utimbuf *times);
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif
29

UCC git Repository :: git.ucc.asn.au