xref: /csrg-svn/games/hack/hack.version.c (revision 41271)
1*41271Sbostic /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2*41271Sbostic /* hack.version.c - version 1.0.3 */
3*41271Sbostic /* $Header: hack.version.c,v 1.5 85/05/09 00:40:41 aeb Exp $ */
4*41271Sbostic 
5*41271Sbostic #include	"date.h"
6*41271Sbostic 
doversion()7*41271Sbostic doversion(){
8*41271Sbostic 	pline("%s 1.0.3 - last edit %s.", (
9*41271Sbostic #ifdef QUEST
10*41271Sbostic 		"Quest"
11*41271Sbostic #else
12*41271Sbostic 		"Hack"
13*41271Sbostic #endif QUEST
14*41271Sbostic 		), datestring);
15*41271Sbostic 	return(0);
16*41271Sbostic }
17