diff options
Diffstat (limited to 'libc/malloc_debug/malloc_debug.h')
-rw-r--r-- | libc/malloc_debug/malloc_debug.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/malloc_debug/malloc_debug.h b/libc/malloc_debug/malloc_debug.h index cd025a786..6f9f90f5f 100644 --- a/libc/malloc_debug/malloc_debug.h +++ b/libc/malloc_debug/malloc_debug.h @@ -58,11 +58,6 @@ struct Header { static size_t max_size() { return (1U << 31) - 1; } } __attribute__((packed)); -struct TrackHeader { - Header* prev = nullptr; - Header* next = nullptr; -} __attribute__((packed)); - struct BacktraceHeader { size_t num_frames; uintptr_t frames[0]; |