]> asedeno.scripts.mit.edu Git - 1ts-debian.git/blob - zephyr/server/version.c
This commit was generated by cvs2svn to compensate for changes in r127,
[1ts-debian.git] / zephyr / server / version.c
1 /* This file is part of the Project Athena Zephyr Notification System.
2  * It contains the version identification of the Zephyr server
3  *
4  *      Created by:     John T. Kohl
5  *
6  *      $Id: version.c,v 3.24 1999/01/22 23:19:51 ghudson Exp $
7  *
8  *      Copyright (c) 1989 by the Massachusetts Institute of Technology.
9  *      For copying and distribution information, see the file
10  *      "mit-copyright.h". 
11  */
12
13 #include <zephyr/mit-copyright.h>
14
15 #include "zserver.h"
16 #include "version.h"
17
18 const char zephyr_version[] = "Zephyr system version 2.0";
19
20 static char version[] = {
21     "Zephyr Server "
22 #ifdef DEBUG
23     "(DEBUG) "
24 #endif
25     "$Revision: 3.24 $"
26     ": " ZSERVER_VERSION_STRING "/" MACHINE_TYPE
27 };
28
29 #if !defined (lint) && !defined (SABER)
30 static const char rcsid_version_c[] =
31     "$Id: version.c,v 3.24 1999/01/22 23:19:51 ghudson Exp $";
32 static const char copyright[] =
33     "Copyright (c) 1987,1988,1989,1990 Massachusetts Institute of Technology.\n";
34 #endif
35
36 char *
37 get_version()
38 {
39     return version;
40 }