summaryrefslogtreecommitdiff
path: root/Docs/src/bin/halibut/licence.c
blob: b48e0f1c8aaae65e5f7b4a4e996cd6f72c7864e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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);
}