1993-08-02 21:18:41 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-03-23 11:28:00 +03:00
|
|
|
static char rcsid[] = "$NetBSD: hack.version.c,v 1.3 1995/03/23 08:32:03 cgd Exp $";
|
1993-08-02 21:18:41 +04:00
|
|
|
#endif /* not lint */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#include "date.h"
|
|
|
|
|
|
|
|
doversion(){
|
|
|
|
pline("%s 1.0.3 - last edit %s.", (
|
|
|
|
#ifdef QUEST
|
|
|
|
"Quest"
|
|
|
|
#else
|
|
|
|
"Hack"
|
|
|
|
#endif QUEST
|
|
|
|
), datestring);
|
|
|
|
return(0);
|
|
|
|
}
|