1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:07:44 +00:00

Kernel: Remove unnecessary forward declaration in SlabAllocator

This commit is contained in:
Andreas Kling 2020-02-02 20:25:41 +01:00
parent 8ccf0e16a9
commit 25b635c841

View file

@ -32,8 +32,6 @@
#define SLAB_ALLOC_SCRUB_BYTE 0xab
#define SLAB_DEALLOC_SCRUB_BYTE 0xbc
class JsonObjectSerializer;
void* slab_alloc(size_t slab_size);
void slab_dealloc(void*, size_t slab_size);
void slab_alloc_init();