Add tera/peta suffixes
[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
10extern unsigned int smalloc_pool_size;
11
12#endif