diff options
author | Jason Evans <jasone@canonware.com> | 2016-02-21 07:43:17 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2016-02-21 07:43:17 (GMT) |
commit | 56139dc4035abc76744ad24844daaba77a721640 (patch) | |
tree | 3bca20ee0d77ceae46e865ae74c046ec57d04e01 /include | |
parent | ecae12323d44cd739662051a2b9a5965cbe0e965 (diff) | |
download | jemalloc-56139dc4035abc76744ad24844daaba77a721640.zip jemalloc-56139dc4035abc76744ad24844daaba77a721640.tar.gz jemalloc-56139dc4035abc76744ad24844daaba77a721640.tar.bz2 |
Remove _WIN32-specific struct timespec declaration.
struct timespec is already defined by the system (at least on MinGW).
Diffstat (limited to 'include')
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal_decls.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/jemalloc/internal/jemalloc_internal_decls.h b/include/jemalloc/internal/jemalloc_internal_decls.h index 0f29e67..0bca63e 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 <fcntl.h> #include <sys/time.h> -#ifdef _WIN32 -struct timespec { - time_t tv_sec; - long tv_nsec; -}; -#endif #endif /* JEMALLOC_INTERNAL_H */ |