summaryrefslogtreecommitdiff
path: root/myfind/ast_evaluation/memory.h
blob: deab8f12cdd062dff696e929a5e4ebe0e7947bd9 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef MEMORY_H
#define MEMORY_H

#include <stddef.h>

void *my_malloc(size_t size);
void *my_calloc(size_t nmemb, size_t size);
void *my_reallocarray(void *ptr, size_t nmemb, size_t size);

#endif /* ! MEMORY_H */