Add a really simple allocator, backed with mmap'ed memory
[fio.git] / smalloc.h
... / ...
CommitLineData
1#ifndef FIO_SMALLOC_H
2#define FIO_SMALLOC_H
3
4extern void *smalloc(unsigned int);
5extern void sfree(void *);
6extern char *smalloc_strdup(const char *);
7extern void sinit(void);
8extern void scleanup(void);
9
10#endif