blob: 84e93aff9f1550c00b86587f4f1de80ccca1d27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.version.c - version 1.0.3 */
/* $FreeBSD: src/games/hack/hack.version.c,v 1.3 1999/08/27 23:29:05 peter Exp $ */
/* $DragonFly: src/games/hack/hack.version.c,v 1.4 2006/08/21 19:45:32 pavalos Exp $ */
#include "date.h"
#include "hack.h"
int
doversion(void)
{
pline("%s 1.0.3 - last edit %s.", (
#ifdef QUEST
"Quest"
#else
"Hack"
#endif /* QUEST */
), datestring);
return (0);
}
|