aboutsummaryrefslogtreecommitdiff
path: root/tests/test.h
blob: d7832d19c4c3d0cdb6f131508f9d80f439a228b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef TEST_H
#define TEST_H

#include <stdlib.h>
#include <covsrv/covsrv.h>

#define mallocc(n)     ({covsrv_die() ? NULL : malloc(n);})
#define reallocc(p, n) ({covsrv_die() ? NULL : realloc(p, n);})

#endif /* TEST_ALLOC_H */