xref: /netbsd-src/games/hack/hack.version.c (revision 4b30c543a0b21e3ba94f2c569e9a82b4fdb2075f)
1 /*
2  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
3  */
4 
5 #ifndef lint
6 static char rcsid[] = "$Id: hack.version.c,v 1.2 1993/08/02 17:19:37 mycroft Exp $";
7 #endif /* not lint */
8 
9 #include	"date.h"
10 
11 doversion(){
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 }
21