blob: d5d4557e121a80fc702ede0ad0655c9cb052b1f9 [file] [log] [blame]
Jens Axboed24c33a2008-03-01 18:27:36 +01001#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