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.
This commit is contained in:
Slobodan Predolac 2026-05-28 19:09:33 -04:00 committed by Slobodan Predolac
parent ca1a9236ec
commit d20b19f76b

View file

@ -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"
/******************************************************************************/