author | Rich Felker <dalias@aerifal.cx> | 2019年07月31日 15:24:58 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019年10月28日 19:26:52 -0400 |
commit | 1febd21d3fb7b78f6fc13e48b3ff2a396a607a15 (patch) | |
tree | 3dae8f0d545d3dda4921c647cb6da9302434229b /include/sys/time.h | |
parent | f7f12e4cf2a918bb9133d93cce6d43a2df9f59d1 (diff) | |
download | musl-1febd21d3fb7b78f6fc13e48b3ff2a396a607a15.tar.gz |
-rw-r--r-- | include/sys/time.h | 14 |
diff --git a/include/sys/time.h b/include/sys/time.h index c5cab814..cdc67ef6 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -56,6 +56,20 @@ int adjtime (const struct timeval *, struct timeval *); (void)0 ) #endif +#if _REDIR_TIME64 +__REDIR(gettimeofday, __gettimeofday_time64); +__REDIR(getitimer, __getitimer_time64); +__REDIR(setitimer, __setitimer_time64); +__REDIR(utimes, __utimes_time64); +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +__REDIR(futimes, __futimes_time64); +__REDIR(futimesat, __futimesat_time64); +__REDIR(lutimes, __lutimes_time64); +__REDIR(settimeofday, __settimeofday_time64); +__REDIR(adjtime, __adjtime64); +#endif +#endif + #ifdef __cplusplus } #endif |