diff options
Diffstat (limited to 'third_party/tcmalloc/vendor/src/pagemap.h')
-rw-r--r-- | third_party/tcmalloc/vendor/src/pagemap.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/third_party/tcmalloc/vendor/src/pagemap.h b/third_party/tcmalloc/vendor/src/pagemap.h index 1786e68..27cb3da 100644 --- a/third_party/tcmalloc/vendor/src/pagemap.h +++ b/third_party/tcmalloc/vendor/src/pagemap.h @@ -46,6 +46,9 @@ #define TCMALLOC_PAGEMAP_H_ #include "config.h" + +#include <stddef.h> // for NULL, size_t +#include <string.h> // for memset #if defined HAVE_STDINT_H #include <stdint.h> #elif defined HAVE_INTTYPES_H @@ -53,7 +56,7 @@ #else #include <sys/types.h> #endif -#include "internal_logging.h" +#include "internal_logging.h" // for ASSERT // Single-level array template <int BITS> |