home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / lint / lmanifest < prev    next >
Encoding:
Text File  |  1979-01-10  |  477 b   |  19 lines

  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
  19.