projects
/
fio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Makefile: break long line
[fio.git]
/
smalloc.h
1
#ifndef FIO_SMALLOC_H
2
#define FIO_SMALLOC_H
3
4
extern void *smalloc(unsigned int);
5
extern void sfree(void *);
6
extern char *smalloc_strdup(const char *);
7
extern void sinit(void);
8
extern void scleanup(void);
9
10
extern unsigned int smalloc_pool_size;
11
12
#endif