summaryrefslogtreecommitdiff
path: root/server/version.c
blob: fe0400c95306c4a0726d755f68cb6b6bc7190108 (plain)
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
28
29
30
31
32
/* This file is part of the Project Athena Zephyr Notification System.
 * It contains the version identification of the Zephyr server
 *
 *	Created by:	John T. Kohl
 *
 *	$Source$
 *	$Author$
 *
 *	Copyright (c) 1989 by the Massachusetts Institute of Technology.
 *	For copying and distribution information, see the file
 *	"mit-copyright.h". 
 */

#include <zephyr/mit-copyright.h>

#ifdef DEBUG
extern const char version[] = "Zephyr Server (DEBUG) $Revision$";
#else
extern const char version[] = "Zephyr Server $Revision$";
#endif

#if !defined (lint) && !defined (SABER)
static const char rcsid_version_c[] =
    "$Id$";
extern const char copyright[] =
    "Copyright (c) 1987,1988,1989,1990 Massachusetts Institute of Technology.\n";
#ifdef CONCURRENT
extern const char concurrent[] = "Brain-dump concurrency enabled";
#else
extern const char concurrent[] = "no brain-dump concurrency";
#endif
#endif