From d20b19f76befb1b243ce11bbb4da5be24f7e2f07 Mon Sep 17 00:00:00 2001 From: Slobodan Predolac Date: Thu, 28 May 2026 19:09:33 -0400 Subject: [PATCH] Drop umbrella include from src/malloc_dispatch.c Follow-up for the malloc_dispatch module added earlier in the stack. The previous batch commits only touched files that existed when cyclical_dep_h was written; malloc_dispatch.c was added later. --- src/malloc_dispatch.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/malloc_dispatch.c b/src/malloc_dispatch.c index ea8d2817..34c31ad8 100644 --- a/src/malloc_dispatch.c +++ b/src/malloc_dispatch.c @@ -1,8 +1,16 @@ #include "jemalloc/internal/jemalloc_preamble.h" -#include "jemalloc/internal/jemalloc_internal_includes.h" +#include "jemalloc/internal/arena.h" #include "jemalloc/internal/assert.h" #include "jemalloc/internal/emap.h" +#include "jemalloc/internal/jemalloc_internal_inlines_c.h" +#include "jemalloc/internal/large.h" +#include "jemalloc/internal/malloc_dispatch_externs.h" +#include "jemalloc/internal/malloc_dispatch_inlines.h" +#include "jemalloc/internal/sc.h" +#include "jemalloc/internal/sz.h" +#include "jemalloc/internal/tcache.h" +#include "jemalloc/internal/tcache_inlines.h" /******************************************************************************/