summaryrefslogtreecommitdiff
path: root/smalloc.h
blob: 4b551e3e4be3fd979462371a4c866c349e2bb04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FIO_SMALLOC_H
#define FIO_SMALLOC_H

extern void *smalloc(size_t);
extern void *scalloc(size_t, size_t);
extern void sfree(void *);
extern char *smalloc_strdup(const char *);
extern void sinit(void);
extern void scleanup(void);

extern unsigned int smalloc_pool_size;

#endif