X-Git-Url: https://git.distorted.org.uk/~mdw/adns/blobdiff_plain/a79ac5bae05711d622671eacfbafd19a5a94ae3c..4ac3336eca2d301117e9a5ede8573005a52a1559:/regress/harness.h.m4 diff --git a/regress/harness.h.m4 b/regress/harness.h.m4 index 12ecc3e..35efa18 100644 --- a/regress/harness.h.m4 +++ b/regress/harness.h.m4 @@ -48,6 +48,11 @@ m4_include(`hsyscalls.i4') int Hwritev(int fd, const struct iovec *vector, size_t count); int Hgettimeofday(struct timeval *tv, struct timezone *tz); +void *Hmalloc(size_t sz); +void Hfree(void *ptr); +void *Hrealloc(void *op, size_t nsz); +void Hexit(int rv); + /* There is a Q function (Q for Question) for each such syscall; * it constructs a string representing the call, and calls Q_str * on it, or constructs it in vb and calls Q_vb; @@ -59,6 +64,8 @@ m4_include(`hsyscalls.i4') void Q_vb(void); +extern void Tshutdown(void); + /* General help functions */ void Tfailed(const char *why);