Hacked up halibut source code

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1534 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-11-01 18:22:40 +00:00
parent 8204a7298a
commit b23696e64c
24 changed files with 12849 additions and 0 deletions

View file

@ -0,0 +1,18 @@
/*
* 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);
}