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