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
5 changes: 5 additions & 0 deletions sdsalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
* the include of your alternate allocator if needed (not needed in order
* to use the default libc allocator). */

#ifndef __SDS_ALLOC_H__
#define __SDS_ALLOC_H__

#define s_malloc malloc
#define s_realloc realloc
#define s_free free

#endif