1 /* $OpenBSD: hack.version.c,v 1.3 2001/08/06 22:59:13 pjanzen Exp $ */ 2 3 /* 4 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. 5 */ 6 7 #ifndef lint 8 static char rcsid[] = "$OpenBSD: hack.version.c,v 1.3 2001/08/06 22:59:13 pjanzen Exp $"; 9 #endif /* not lint */ 10 11 #include "date.h" 12 13 doversion(){ 14 pline("%s 1.0.3 - last edit %s.", ( 15 #ifdef QUEST 16 "Quest" 17 #else 18 "Hack" 19 #endif /* QUEST */ 20 ), datestring); 21 return(0); 22 } 23