#include <stddef.h>
/* Custom allocators that abort the program
* and print an error message on stderr,
* if they fail
*/
void *xmalloc(size_t s);
void *xrealloc(void *ptr, size_t s);