Research V7 development
[unix-history] / usr / src / cmd / lint / lmanifest
CommitLineData
d4674c91
SJ
1/* the key:
2 LDI defined and initialized: storage set aside
3 LIB defined on a library
4 LDC defined as a common region on UNIX
5 LDX defined by an extern: if ! pflag, same as LDI
6 LRV function returns a value
7 LUV function used in a value context
8 LUE function used in effects context
9 LUM mentioned somewhere other than at the declaration
10 */
11# define LDI 01
12# define LIB 02
13# define LDC 04
14# define LDX 010
15# define LRV 020
16# define LUV 040
17# define LUE 0100
18# define LUM 0200