You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|
|
|