NetBSD/games/hack/hack.version.c

28 lines
505 B
C
Raw Normal View History

1997-10-19 20:56:41 +04:00
/* $NetBSD: hack.version.c,v 1.4 1997/10/19 16:59:25 christos Exp $ */
/*
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
*/
1997-10-19 20:56:41 +04:00
#include <sys/cdefs.h>
#ifndef lint
1997-10-19 20:56:41 +04:00
__RCSID("$NetBSD: hack.version.c,v 1.4 1997/10/19 16:59:25 christos Exp $");
#endif /* not lint */
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
#include "date.h"
#include "hack.h"
#include "extern.h"
1993-03-21 12:45:37 +03:00
1997-10-19 20:56:41 +04:00
int
doversion()
{
1993-03-21 12:45:37 +03:00
pline("%s 1.0.3 - last edit %s.", (
#ifdef QUEST
1997-10-19 20:56:41 +04:00
"Quest"
1993-03-21 12:45:37 +03:00
#else
1997-10-19 20:56:41 +04:00
"Hack"
#endif /* QUEST */
), datestring);
return (0);
1993-03-21 12:45:37 +03:00
}