summaryrefslogtreecommitdiff
path: root/server/version.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1989-09-18 09:24:26 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1989-09-18 09:24:26 +0000
commitbfe44ec2a87d9711a6d8f2dca260306639f50c2d (patch)
treed3c7cf524a06356ad9cbb654cb6681e7d0f4a461 /server/version.c
parentc906e109132c751fe946815f66ce2731b6983ca9 (diff)
Initial revision
Diffstat (limited to 'server/version.c')
-rw-r--r--server/version.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/server/version.c b/server/version.c
new file mode 100644
index 0000000..398709c
--- /dev/null
+++ b/server/version.c
@@ -0,0 +1,31 @@
+/* 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
+char version[] = "Zephyr Server (DEBUG) 3.11";
+#else
+char version[] = "Zephyr Server 3.11";
+#endif DEBUG
+#ifndef lint
+#ifndef SABER
+static char rcsid_main_c[] = "$Id$";
+char copyright[] = "Copyright (c) 1987,1988,1989 Massachusetts Institute of Technology.\n";
+#ifdef CONCURRENT
+char concurrent[] = "Brain-dump concurrency enabled";
+#else
+char concurrent[] = "no brain-dump concurrency";
+#endif CONCURRENT
+#endif SABER
+#endif lint