home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1787 / std.h < prev   
Encoding:
C/C++ Source or Header  |  1990-12-28  |  278 b   |  17 lines

  1. /* STD.H - My own standard header file...
  2.  */
  3.  
  4. #define LOCAL static
  5. #define IMPORT extern
  6.  
  7. #define FAST register
  8.  
  9. typedef short WORD;
  10. typedef unsigned short UWORD;
  11. typedef char TEXT;
  12. typedef unsigned char UTINY;
  13. typedef long LONG;
  14. typedef unsigned long ULONG;
  15. typedef int INT;
  16.  
  17.