summaryrefslogtreecommitdiff
path: root/allocator.c
diff options
context:
space:
mode:
Diffstat (limited to 'allocator.c')
-rw-r--r--allocator.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/allocator.c b/allocator.c
index a731928..59dc350 100644
--- a/allocator.c
+++ b/allocator.c
@@ -21,9 +21,6 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>
*/
-static void *err_malloc(size_t bytes);
-static void *err_calloc(size_t n, size_t sz);
-static void *err_realloc(void *prev, size_t new_size);
#ifdef TOC_DEBUG
//#define NO_ALLOCATOR 1 /* useful for debugging; valgrind checks writing past the end of a malloc, but that won't work with an allocator */
#endif