Remove _WIN32-specific struct timespec declaration.

struct timespec is already defined by the system (at least on MinGW).
This commit is contained in:
Jason Evans 2016-02-20 23:43:17 -08:00
parent ecae12323d
commit 56139dc403

View File

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