summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Goldblatt <davidgoldblatt@fb.com>2017-04-17 23:17:02 (GMT)
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2017-04-19 01:35:03 (GMT)
commit418d96a86ce95e36f3dbd3dd700a30b5b7cdbcfd (patch)
treefcf97b45bc4d93d6566c3f3edda775c4f3410d2e /src
parent7ebc83894f025332d44cae361bd89c53c04acfc7 (diff)
downloadjemalloc-418d96a86ce95e36f3dbd3dd700a30b5b7cdbcfd.zip
jemalloc-418d96a86ce95e36f3dbd3dd700a30b5b7cdbcfd.tar.gz
jemalloc-418d96a86ce95e36f3dbd3dd700a30b5b7cdbcfd.tar.bz2
Header refactoring: unify nstime.h and move it out of the catch-all
Diffstat (limited to 'src')
-rw-r--r--src/ctl.c1
-rw-r--r--src/nstime.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ctl.c b/src/ctl.c
index 4fba2cd..069e535 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -3,6 +3,7 @@
#include "jemalloc/internal/jemalloc_internal_includes.h"
#include "jemalloc/internal/assert.h"
+#include "jemalloc/internal/nstime.h"
#include "jemalloc/internal/util.h"
/******************************************************************************/
diff --git a/src/nstime.c b/src/nstime.c
index e089547..9f5d192 100644
--- a/src/nstime.c
+++ b/src/nstime.c
@@ -1,6 +1,8 @@
#include "jemalloc/internal/jemalloc_preamble.h"
#include "jemalloc/internal/jemalloc_internal_includes.h"
+#include "jemalloc/internal/nstime.h"
+
#include "jemalloc/internal/assert.h"
#define BILLION UINT64_C(1000000000)