8 lines
128 B
C
8 lines
128 B
C
|
#include "testrunner.h"
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(int argc, char **args) {
|
||
|
run_tests(argc, args);
|
||
|
exit(EXIT_SUCCESS);
|
||
|
}
|