mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 22:51:50 +03:00
Merge 1e1ac454b7 into 1972241cd2
This commit is contained in:
commit
4a3b360a3f
2 changed files with 6 additions and 2 deletions
|
|
@ -17,6 +17,7 @@
|
|||
# endif
|
||||
# endif
|
||||
#else
|
||||
# include <strings.h>
|
||||
# include <sys/param.h>
|
||||
# include <sys/mman.h>
|
||||
# if !defined(__pnacl__) && !defined(__native_client__)
|
||||
|
|
@ -72,7 +73,6 @@
|
|||
# define offsetof(type, member) ((size_t)&(((type *)NULL)->member))
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <ctype.h>
|
||||
#ifdef _MSC_VER
|
||||
# include <io.h>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,11 @@
|
|||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <limits.h>
|
||||
#include <strings.h>
|
||||
#ifdef _WIN32
|
||||
# include "msvc_compat/strings.h"
|
||||
#else
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
#define JEMALLOC_VERSION "@jemalloc_version@"
|
||||
#define JEMALLOC_VERSION_MAJOR @jemalloc_version_major@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue