From 56139dc4035abc76744ad24844daaba77a721640 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Sat, 20 Feb 2016 23:43:17 -0800 Subject: [PATCH] Remove _WIN32-specific struct timespec declaration. struct timespec is already defined by the system (at least on MinGW). --- include/jemalloc/internal/jemalloc_internal_decls.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/jemalloc/internal/jemalloc_internal_decls.h b/include/jemalloc/internal/jemalloc_internal_decls.h index 0f29e676..0bca63e5 100644 --- a/include/jemalloc/internal/jemalloc_internal_decls.h +++ b/include/jemalloc/internal/jemalloc_internal_decls.h @@ -62,11 +62,5 @@ isblank(int c) #include #include -#ifdef _WIN32 -struct timespec { - time_t tv_sec; - long tv_nsec; -}; -#endif #endif /* JEMALLOC_INTERNAL_H */