summaryrefslogtreecommitdiff
path: root/rhtvision/include/cl/utime.h
blob: 8b34370d316ba46d289d286c15a53e7a29d9de06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef UTime_Included
#define UTime_Included

#ifdef __cplusplus
extern "C" {
#endif

struct utimbuf
{
 time_t actime;
 time_t modtime;
};

int utime(const char *file, const struct utimbuf *time);

#ifdef __cplusplus
}
#endif

#endif /* UTime_Included */