blob: 065971379ca46ae40b80beb37c5d630189b26acd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include "lily-test.h"
#include "tests.h"
int main()
{
run_test(test_LILY_LOCATION);
return 0;
}
|