repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix misleading comment in strstr
[musl.git]
/
include
/
utime.h
blob
5755bd53ee866ebf7a1b73768bad7837a2de5f70
1
#ifndef _UTIME_H
2
#define _UTIME_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#include <features.h>
9
10
#define __NEED_time_t
11
12
#include <bits/alltypes.h>
13
14
struct
utimbuf
{
15
time_t
actime
;
16
time_t
modtime
;
17
};
18
19
int
utime
(
const char
*,
const struct
utimbuf
*);
20
21
#if _REDIR_TIME64
22
__REDIR
(
utime
,
__utime64
);
23
#endif
24
25
#ifdef __cplusplus
26
}
27
#endif
28
29
#endif