X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Futime.h;h=5755bd53ee866ebf7a1b73768bad7837a2de5f70;hb=159d1f6c02569091c7a48bdb2e2e824b844a1902;hp=ec82e0f3f844f82449796dbd9b064b40c49abdb9;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/include/utime.h b/include/utime.h index ec82e0f3..5755bd53 100644 --- a/include/utime.h +++ b/include/utime.h @@ -5,18 +5,23 @@ extern "C" { #endif +#include + #define __NEED_time_t #include -struct utimbuf -{ +struct utimbuf { time_t actime; time_t modtime; }; int utime (const char *, const struct utimbuf *); +#if _REDIR_TIME64 +__REDIR(utime, __utime64); +#endif + #ifdef __cplusplus } #endif