summaryrefslogtreecommitdiffstats
path: root/memory/bump.h
blob: 5b1c2b706a43cffc8a842efcbd82056ac8315378 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef JOVE_MEMORY_BUMP_H
#define JOVE_MEMORY_BUMP_H 1

#include <stddef.h>

void *bump_where(void);
void *bump_alloc(size_t size);
void bump_setup(void);

#endif