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