stasis-aries-wal/test/check_includes.h
Sears Russell 34bfccb439 Portability fixes for FreeBSD and Mac OS. Check broke compatibility w/
old versions; added #ifdef so that both versions of check will work.
2005-03-13 02:24:01 +00:00

17 lines
280 B
C

#include <stdio.h>
#include <config.h>
#ifndef HAVE_TCASE_SET_TIMEOUT
#define tcase_set_timeout(x, y) 0
#endif
void setup (void) {
remove("logfile.txt");
remove("storefile.txt");
remove("blob0_file.txt");
remove("blob1_file.txt");
}
void teardown(void) {
setup();
}