NSIS/Docs/src/bin/halibut/licence.c
2003-04-04 14:43:36 +00:00

17 lines
214 B
C

/*
* 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);
}