summaryrefslogtreecommitdiff
path: root/ident.h
blob: d1b46c83810ec623f086b8405102e96747d00010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/************************************************

  ident.h -

  $Author: matz $
  $Revision: 1.2 $
  $Date: 1994/08/12 04:47:29 $
  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