]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.version.c
.Nm does not need a dummy argument ("") before punctuation or
[bsdgames-darwin.git] / hack / hack.version.c
1 /* $NetBSD: hack.version.c,v 1.4 1997/10/19 16:59:25 christos Exp $ */
2
3 /*
4 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
5 */
6
7 #include <sys/cdefs.h>
8 #ifndef lint
9 __RCSID("$NetBSD: hack.version.c,v 1.4 1997/10/19 16:59:25 christos Exp $");
10 #endif /* not lint */
11
12 #include "date.h"
13 #include "hack.h"
14 #include "extern.h"
15
16 int
17 doversion()
18 {
19 pline("%s 1.0.3 - last edit %s.", (
20 #ifdef QUEST
21 "Quest"
22 #else
23 "Hack"
24 #endif /* QUEST */
25 ), datestring);
26 return (0);
27 }