xref: /netbsd-src/games/hack/hack.version.c (revision ce63d6c20fc4ec8ddc95c84bb229e3c4ecf82b69)
1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* hack.version.c - version 1.0.3 */
3 /* $Header: /cvsroot/src/games/hack/hack.version.c,v 1.1.1.1 1993/03/21 09:45:37 cgd Exp $ */
4 
5 #include	"date.h"
6 
7 doversion(){
8 	pline("%s 1.0.3 - last edit %s.", (
9 #ifdef QUEST
10 		"Quest"
11 #else
12 		"Hack"
13 #endif QUEST
14 		), datestring);
15 	return(0);
16 }
17