zig/lib/libc/include/generic-musl/utime.h

29 lines
342 B
C
Raw Normal View History

2019-03-12 07:28:05 -07:00
#ifndef _UTIME_H
#define _UTIME_H
#ifdef __cplusplus
extern "C" {
#endif
2020-03-12 13:26:14 -07:00
#include <features.h>
2019-03-12 07:28:05 -07:00
#define __NEED_time_t
#include <bits/alltypes.h>
struct utimbuf {
time_t actime;
time_t modtime;
};
int utime (const char *, const struct utimbuf *);
2020-03-12 13:26:14 -07:00
#if _REDIR_TIME64
__REDIR(utime, __utime64);
#endif
2019-03-12 07:28:05 -07:00
#ifdef __cplusplus
}
#endif
#endif