Merge from vendor branch GDB:
[games.git] / games / hack / hack.version.c
1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* hack.version.c - version 1.0.3 */
3 /* $FreeBSD: src/games/hack/hack.version.c,v 1.3 1999/08/27 23:29:05 peter Exp $ */
4 /* $DragonFly: src/games/hack/hack.version.c,v 1.4 2006/08/21 19:45:32 pavalos Exp $ */
5
6 #include        "date.h"
7 #include        "hack.h"
8
9 int
10 doversion(void)
11 {
12         pline("%s 1.0.3 - last edit %s.", (
13 #ifdef QUEST
14                 "Quest"
15 #else
16                 "Hack"
17 #endif /* QUEST */
18                 ), datestring);
19         return(0);
20 }