• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef FIO_SMALLOC_H
2 #define FIO_SMALLOC_H
3 
4 extern void *smalloc(size_t);
5 extern void *scalloc(size_t, size_t);
6 extern void sfree(void *);
7 extern char *smalloc_strdup(const char *);
8 extern void sinit(void);
9 extern void scleanup(void);
10 
11 extern unsigned int smalloc_pool_size;
12 
13 #endif
14