home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / language / as / source / h / global < prev    next >
Encoding:
Text File  |  1994-04-04  |  345 b   |  31 lines

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