summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1987-03-19 16:34:51 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1987-03-19 16:34:51 +0000
commit960851571081758f429fb6a4d57910267aceed41 (patch)
tree1df526851d52bd272694a3c6c3a610b205732f31
parent69af6a02313a7e9eec5672b4c944f7f14725fc31 (diff)
add double definition protection tokens and standard header
-rw-r--r--h/zephyr/zephyr.h19
-rw-r--r--h/zephyr/zephyr_internal.h16
2 files changed, 32 insertions, 3 deletions
diff --git a/h/zephyr/zephyr.h b/h/zephyr/zephyr.h
index e9bde9c..a215449 100644
--- a/h/zephyr/zephyr.h
+++ b/h/zephyr/zephyr.h
@@ -1,7 +1,21 @@
+#ifndef __ZEPHYR_H__
+#define __ZEPHYR_H__
+/* This file is part of the Project Athena Zephyr Notification System.
+ * It contains global definitions
+ *
+ * Created by: Robert French
+ *
+ * $Source$
+ * $Author$
+ *
+ * Copyright (c) 1987 by the Massachusetts Institute of Technology.
+ * For copying and distribution information, see the file
+ * "mit-copyright.h".
+ */
+/* $Header$ */
+
#include <zephyr/mit-copyright.h>
-/* $Source$ */
-/* $Header$ */
#include <errno.h>
#include <sys/types.h>
@@ -81,3 +95,4 @@ extern int errno;
#define ZERR_S_FIRST 2000 /* internal server error codes */
#define ZERR_S_LAST 3000
+#endif !__ZEPHYR_H__
diff --git a/h/zephyr/zephyr_internal.h b/h/zephyr/zephyr_internal.h
index 76de4c9..06d7891 100644
--- a/h/zephyr/zephyr_internal.h
+++ b/h/zephyr/zephyr_internal.h
@@ -1,7 +1,21 @@
-/* $Source$ */
+#ifndef __ZINTERNAL_H__
+#define __ZINTERNAL_H__
+/* This file is part of the Project Athena Zephyr Notification System.
+ * It contains internal definitions for the client library.
+ *
+ * Created by: Robert French
+ *
+ * $Source$
+ * $Author$
+ *
+ * Copyright (c) 1987 by the Massachusetts Institute of Technology.
+ * For copying and distribution information, see the file
+ * "mit-copyright.h".
+ */
/* $Header$ */
#include <zephyr/zephyr.h>
extern int __HM_port;
extern char *__HM_addr;
+#endif !__ZINTERNAL_H__