remove arch/$(ARCH)/src from the build system
[musl.git] / include / utime.h
blobec82e0f3f844f82449796dbd9b064b40c49abdb9
1 #ifndef _UTIME_H
2 #define _UTIME_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #define __NEED_time_t
10 #include <bits/alltypes.h>
12 struct utimbuf
14 time_t actime;
15 time_t modtime;
18 int utime (const char *, const struct utimbuf *);
20 #ifdef __cplusplus
22 #endif
24 #endif