blob: 6905c6a8c3c806a7ce20616452bb4b82f1fbfe89 [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
Jens Axboe2b386d22008-03-26 10:32:57 +010010extern unsigned int smalloc_pool_size;
11
Jens Axboed24c33a2008-03-01 18:27:36 +010012#endif