1 /* Edited to match src/node.h. */ 2 #include <stdint.h> 3 4 #ifdef _WIN32 5 #if !defined(_SSIZE_T_) && !defined(_SSIZE_T_DEFINED) 6 typedef intptr_t ssize_t; 7 # define _SSIZE_T_ 8 # define _SSIZE_T_DEFINED 9 #endif 10 #else // !_WIN32 11 # include <sys/types.h> // size_t, ssize_t 12 #endif // _WIN32 13 14 #ifdef _MSC_VER 15 # include <intrin.h> 16 # define __builtin_popcount __popcnt 17 #endif 18 19 /* Define to 1 to enable debug output. */ 20 /* #undef DEBUGBUILD */ 21 22 /* Define to 1 if you have the <arpa/inet.h> header file. */ 23 /* #undef HAVE_ARPA_INET_H */ 24 25 /* Define to 1 if you have the <stddef.h> header file. */ 26 #define HAVE_STDDEF_H 1 27 28 /* Define to 1 if you have the <stdint.h> header file. */ 29 #define HAVE_STDINT_H 1 30 31 /* Define to 1 if you have the <stdlib.h> header file. */ 32 #define HAVE_STDLIB_H 1 33 34 /* Define to 1 if you have the <string.h> header file. */ 35 #define HAVE_STRING_H 1 36 37 /* Define to 1 if you have the <unistd.h> header file. */ 38 /* #undef HAVE_UNISTD_H */ 39