home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / storage < prev    next >
Encoding:
Text File  |  1992-07-20  |  266 b   |  22 lines

  1. /*
  2.  * storage.h
  3.  * Copyright © 1992 Niklas Röjemo
  4.  */
  5.  
  6. #ifndef _storage_h
  7. #define _storage_h
  8.  
  9. #ifndef _value_h
  10. #include "value.h"
  11. #endif
  12.  
  13. #ifndef _symbol_h
  14. #include "symbol.h"
  15. #endif
  16.  
  17. Value storageValue(void);
  18. void c_record(void);
  19. void c_alloc(Symbol *sym);
  20.  
  21. #endif
  22.