2002-11-01 18:22:40 +00:00
|
|
|
/*
|
|
|
|
* licence.c: licence text
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
static char *licencetext[] = {
|
2003-04-04 14:43:36 +00:00
|
|
|
"FIXME: licence text goes here",
|
|
|
|
NULL
|
2002-11-01 18:22:40 +00:00
|
|
|
};
|
|
|
|
|
2002-11-01 21:52:36 +00:00
|
|
|
void licence(void)
|
2002-11-01 18:22:40 +00:00
|
|
|
{
|
2003-04-04 14:43:36 +00:00
|
|
|
char **p;
|
|
|
|
for (p = licencetext; *p; p++)
|
|
|
|
puts(*p);
|
2002-11-01 18:22:40 +00:00
|
|
|
}
|