diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-04-17 23:17:02 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-04-19 01:35:03 (GMT) |
commit | 418d96a86ce95e36f3dbd3dd700a30b5b7cdbcfd (patch) | |
tree | fcf97b45bc4d93d6566c3f3edda775c4f3410d2e /src | |
parent | 7ebc83894f025332d44cae361bd89c53c04acfc7 (diff) | |
download | jemalloc-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.c | 1 | ||||
-rw-r--r-- | src/nstime.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -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) |