Add time_update().

This commit is contained in:
Cameron Evans
2016-02-02 21:52:08 -08:00
committed by Jason Evans
parent f829009929
commit e5d5a4a517
7 changed files with 97 additions and 2 deletions

View File

@@ -61,4 +61,12 @@ isblank(int c)
#endif
#include <fcntl.h>
#include <sys/time.h>
#ifdef _WIN32
struct timespec {
time_t tv_sec;
long tv_nsec;
};
#endif
#endif /* JEMALLOC_INTERNAL_H */