Rename Buttress to Halibut. I _think_ I've caught everything in this pass.
[sgt/halibut] / licence.c
1 /*
2 * licence.c: licence text
3 */
4
5 #include <stdio.h>
6
7 static char *licencetext[] = {
8 "FIXME: licence text goes here",
9 NULL
10 };
11
12 void licence(void) {
13 char **p;
14 for (p = licencetext; *p; p++)
15 puts(*p);
16 }