File: hack.version.c

package info (click to toggle)
bsdgames-nonfree 2.12-3
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 2,056 kB
  • ctags: 2,113
  • sloc: ansic: 29,027; sh: 1,006; makefile: 51
file content (27 lines) | stat: -rw-r--r-- 505 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*	$NetBSD: hack.version.c,v 1.4 1997/10/19 16:59:25 christos Exp $	*/

/*
 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
 */

#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: hack.version.c,v 1.4 1997/10/19 16:59:25 christos Exp $");
#endif				/* not lint */

#include "date.h"
#include "hack.h"
#include "extern.h"

int
doversion()
{
	pline("%s 1.0.3 - last edit %s.", (
#ifdef QUEST
					   "Quest"
#else
					   "Hack"
#endif	/* QUEST */
					   ), datestring);
	return (0);
}