diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-04-11 20:06:31 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-04-19 01:35:03 (GMT) |
commit | 54373be0840881cb1123a190013dd11c34ab62f1 (patch) | |
tree | 0610508c62fd5565e9a575b185040c3014648304 /include/jemalloc | |
parent | 0b00ffe55f01958a048ded483eababd051247b8d (diff) | |
download | jemalloc-54373be0840881cb1123a190013dd11c34ab62f1.zip jemalloc-54373be0840881cb1123a190013dd11c34ab62f1.tar.gz jemalloc-54373be0840881cb1123a190013dd11c34ab62f1.tar.bz2 |
Header refactoring: move malloc_io.h out of the catchall
Diffstat (limited to 'include/jemalloc')
-rw-r--r-- | include/jemalloc/internal/ctl_externs.h | 2 | ||||
-rw-r--r-- | include/jemalloc/internal/jemalloc_internal_includes.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/jemalloc/internal/ctl_externs.h b/include/jemalloc/internal/ctl_externs.h index 17bbba0..875a810 100644 --- a/include/jemalloc/internal/ctl_externs.h +++ b/include/jemalloc/internal/ctl_externs.h @@ -1,6 +1,8 @@ #ifndef JEMALLOC_INTERNAL_CTL_EXTERNS_H #define JEMALLOC_INTERNAL_CTL_EXTERNS_H +#include "jemalloc/internal/malloc_io.h" + /* Maximum ctl tree depth. */ #define CTL_MAX_DEPTH 7 diff --git a/include/jemalloc/internal/jemalloc_internal_includes.h b/include/jemalloc/internal/jemalloc_internal_includes.h index 64cda53..d4d0c20 100644 --- a/include/jemalloc/internal/jemalloc_internal_includes.h +++ b/include/jemalloc/internal/jemalloc_internal_includes.h @@ -41,7 +41,6 @@ /******************************************************************************/ #include "jemalloc/internal/assert.h" -#include "jemalloc/internal/malloc_io.h" #include "jemalloc/internal/util.h" /******************************************************************************/ |