shithub: scc

ref: c29e1e711c5e0b6ad83f93d65a88d320302402d1
dir: /lib/c/malloc.h/

View raw version
#include <stdlib.h>

/* minimum amount of required units */
#define NALLOC 10000

typedef union header Header;
union header {
	struct hdr {
		Header *next;
		size_t size;
	} h;
	/* most restrictive type fixes the union size for alignment */
	_ALIGNTYPE most;
};

extern void *_prevchunk(Header *hp);