Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mempool.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#define alignto sizeof(void*)
#define alignmask (alignto-1)

void *emalloc(unsigned size);
char *emalloc(size_t size);

#define MEMPOOL_CHUNKSIZE (65536-sizeof(unsigned)*4)

Expand Down