stasis-aries-wal/test/check_includes.h

18 lines
280 B
C
Raw Normal View History

#include <stdio.h>
#include <config.h>
#ifndef HAVE_TCASE_SET_TIMEOUT
#define tcase_set_timeout(x, y) 0
#endif
2004-06-24 21:10:31 +00:00
void setup (void) {
remove("logfile.txt");
remove("storefile.txt");
remove("blob0_file.txt");
remove("blob1_file.txt");
}
void teardown(void) {
setup();
}