From f91811f57de0561cc7c8efb5897a6b62f5c0e0b2 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 30 Jan 1999 21:35:36 +0000 Subject: Initial checkin of skeleton application. About to start reading files [originally from svn r22] --- licence.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 licence.c (limited to 'licence.c') diff --git a/licence.c b/licence.c new file mode 100644 index 0000000..0c4338a --- /dev/null +++ b/licence.c @@ -0,0 +1,16 @@ +/* + * licence.c: licence text + */ + +#include + +static char *licencetext[] = { + "FIXME: licence text goes here", + NULL +}; + +void licence(void) { + char **p; + for (p = licencetext; *p; p++) + puts(*p); +} -- cgit v1.1