From c92305221770bb1316d026c200d569ca4e930e42 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Thu, 28 Aug 2025 16:20:17 -0400 Subject: merge libc files, new init methods for libjove --- lib/libc-jove/stdlib/heap.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 lib/libc-jove/stdlib/heap.h (limited to 'lib/libc-jove/stdlib/heap.h') diff --git a/lib/libc-jove/stdlib/heap.h b/lib/libc-jove/stdlib/heap.h deleted file mode 100644 index 9628444..0000000 --- a/lib/libc-jove/stdlib/heap.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef _LIBC_JOVE_HEAP_H -#define _LIBC_JOVE_HEAP_H 1 - -#include -#include - -#define LIBC_HEAP_INIT_SIZE (0x1000) -#define LIBC_HEAP_MINALLOC (0x10) -#define LIBC_HEAP_MINSPLIT (sizeof(heap_bin_t) + sizeof(uintptr_t) + LIBC_HEAP_MINALLOC) - -typedef struct heap_bin { - struct heap_bin *next; - size_t size_taken; - char data[]; -} heap_bin_t; - -void __libc_heap_init(uintptr_t program_end); - -#endif -- cgit v1.2.1