From 7a811406dd16e057204bed1aa15cfe33d81ccb6b Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sun, 17 Aug 2025 23:36:54 +0300 Subject: initial commit --- tests/test.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/test.h (limited to 'tests/test.h') diff --git a/tests/test.h b/tests/test.h new file mode 100644 index 0000000..d7832d1 --- /dev/null +++ b/tests/test.h @@ -0,0 +1,10 @@ +#ifndef TEST_H +#define TEST_H + +#include +#include + +#define mallocc(n) ({covsrv_die() ? NULL : malloc(n);}) +#define reallocc(p, n) ({covsrv_die() ? NULL : realloc(p, n);}) + +#endif /* TEST_ALLOC_H */ -- cgit v1.2.3