blob: 0c4338a4b10093df8ca7985747f30a356f299148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* licence.c: licence text
*/
#include <stdio.h>
static char *licencetext[] = {
"FIXME: licence text goes here",
NULL
};
void licence(void) {
char **p;
for (p = licencetext; *p; p++)
puts(*p);
}
|