guard against compilers failing to handle setjmp specially by default
[musl.git] / include / utime.h
blob5755bd53ee866ebf7a1b73768bad7837a2de5f70
1 #ifndef _UTIME_H
2 #define _UTIME_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #include <features.h>
10 #define __NEED_time_t
12 #include <bits/alltypes.h>
14 struct utimbuf {
15 time_t actime;
16 time_t modtime;
19 int utime (const char *, const struct utimbuf *);
21 #if _REDIR_TIME64
22 __REDIR(utime, __utime64);
23 #endif
25 #ifdef __cplusplus
27 #endif
29 #endif