mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
git-subtree-dir: src/simplicity git-subtree-split: 86ac0f92c4b2b6d694dca85dce3b6909aed25894
15 lines
372 B
C
15 lines
372 B
C
#ifndef SIMPLICITY_SIMPLICITY_ALLOC_H
|
|
#define SIMPLICITY_SIMPLICITY_ALLOC_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* Allocate with malloc by default. */
|
|
#define simplicity_malloc malloc
|
|
|
|
/* Allocate+zero initialize with calloc by default. */
|
|
#define simplicity_calloc calloc
|
|
|
|
/* Deallocate with free by default. */
|
|
#define simplicity_free free
|
|
|
|
#endif /* SIMPLICITY_SIMPLICITY_ALLOC_H */
|