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

  1.  
  2. /*
  3.  * global.h
  4.  * Copyright © 1992 Niklas Röjemo
  5.  */
  6.  
  7. #ifndef _global_h
  8. #define _global_h
  9.  
  10.  
  11. typedef unsigned int WORD;
  12. typedef double       FLOAT;
  13.  
  14. #ifndef BOOL
  15. #define BOOL int
  16. #endif
  17.  
  18. #define TRUE 1
  19. #define FALSE 0
  20.  
  21. #ifndef NULL
  22. #define NULL 0
  23. #endif
  24.  
  25.  
  26. #endif
  27.