Blame lib/allocator.c

Packit 33f14e
#define _GL_USE_STDLIB_ALLOC 1
Packit 33f14e
#include <config.h>
Packit 33f14e
#include "allocator.h"
Packit 33f14e
#include <stdlib.h>
Packit 33f14e
struct allocator const stdlib_allocator = { malloc, realloc, free, NULL };