summaryrefslogtreecommitdiff
path: root/comm/global.h
diff options
context:
space:
mode:
authorchatty1993-04-07 11:50:31 +0000
committerchatty1993-04-07 11:50:31 +0000
commitba066c34dde204aa192d03a23a81356374d93731 (patch)
tree39391f6235d2cf8a59a0634ac5ea430cdd21f5d4 /comm/global.h
parent05ab076e1c2a9ca16472f9a6b47b8d22914b3783 (diff)
downloadivy-league-ba066c34dde204aa192d03a23a81356374d93731.zip
ivy-league-ba066c34dde204aa192d03a23a81356374d93731.tar.gz
ivy-league-ba066c34dde204aa192d03a23a81356374d93731.tar.bz2
ivy-league-ba066c34dde204aa192d03a23a81356374d93731.tar.xz
Initial revision
Diffstat (limited to 'comm/global.h')
-rw-r--r--comm/global.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/comm/global.h b/comm/global.h
new file mode 100644
index 0000000..71244dc
--- /dev/null
+++ b/comm/global.h
@@ -0,0 +1,28 @@
+/*
+ * The Unix Channel
+ *
+ * by Michel Beaudouin-Lafon
+ *
+ * Copyright 1990-1993
+ * Laboratoire de Recherche en Informatique (LRI)
+ *
+ * General definitions
+ *
+ * $Id$
+ * $CurLog$
+ */
+
+#ifndef UchGlobal_H_
+#define UchGlobal_H_
+
+#ifndef NIL
+#define NIL 0
+#define Nil(type) ((type) NIL)
+#endif /* NIL */
+
+typedef void *pointer;
+
+#include "ccu/bool.h"
+#include "ccu/word.h"
+
+#endif /* UchGlobal_H_ */