NSIS/Docs/src/bin/halibut/licence.c

19 lines
216 B
C
Raw Normal View History

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