summaryrefslogtreecommitdiff
path: root/ident.h
diff options
context:
space:
mode:
Diffstat (limited to 'ident.h')
-rw-r--r--ident.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/ident.h b/ident.h
new file mode 100644
index 0000000000..8047c272ca
--- /dev/null
+++ b/ident.h
@@ -0,0 +1,25 @@
+/************************************************
+
+ ident.h -
+
+ $Author: matz $
+ $Revision: 1.1.1.1 $
+ $Date: 1994/06/17 14:23:49 $
+ created at: Mon Jan 31 16:23:19 JST 1994
+
+ Copyright (C) 1994 Yukihiro Matsumoto
+
+************************************************/
+
+#ifndef IDENT_H
+#define IDENT_H
+
+#define ID_SCOPE_MASK 0x07
+#define ID_LOCAL 0x00
+#define ID_ATTRSET 0x04
+#define ID_INSTANCE 0x02
+#define ID_GLOBAL 0x03
+#define ID_CONST 0x06
+#define ID_VARMASK 0x02
+
+#endif