blob: a3de945ceacc57b31626ab4062be81d1370ffba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include "lily-test.h"
#include "tests.h"
int main()
{
printf("all tests finished.\n");
return 0;
}
|