From a75b3f7b47c074f2191a33c1f14ad4148754ed80 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 7 Apr 2017 23:58:20 +0200 Subject: Throw away the C client since it doesn't work --- client/memory.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 client/memory.c (limited to 'client/memory.c') diff --git a/client/memory.c b/client/memory.c deleted file mode 100644 index aec3da2..0000000 --- a/client/memory.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "global.h" -#include "memory.h" - -void* check_after_allocation(const char *func,size_t num,size_t sz,void *ptr){ - if(ptr==NULL){ - die("Allocation failed: %s(%zu * %zuB = %zu)",func,num,sz,num*sz); - } - return ptr; -} - -void* check_after_allocation_str(const char *func,void *ptr){ - if(ptr==NULL){ - die("Allocation failed: %s()",func); - } - return ptr; -} -- cgit v1.2.3-54-g00ecf