This commit is contained in:
harana 2025-06-02 21:54:12 +03:00 committed by GitHub
commit 4a3b360a3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View file

@ -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>

View file

@ -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@