21 lines
347 B
C
21 lines
347 B
C
/*
|
|
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
|
|
*/
|
|
|
|
#ifndef lint
|
|
static char rcsid[] = "$Id: hack.version.c,v 1.2 1993/08/02 17:19:37 mycroft Exp $";
|
|
#endif /* not lint */
|
|
|
|
#include "date.h"
|
|
|
|
doversion(){
|
|
pline("%s 1.0.3 - last edit %s.", (
|
|
#ifdef QUEST
|
|
"Quest"
|
|
#else
|
|
"Hack"
|
|
#endif QUEST
|
|
), datestring);
|
|
return(0);
|
|
}
|