home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_01 / TURBOC_1.LZH / INCLUDE / PORTAB.H < prev    next >
Text File  |  1990-03-02  |  429b  |  20 lines

  1. /*      PORTAB.H
  2.  
  3.         For use with rsh output of RCS
  4.         
  5.         Copyright (c) Borland International 1990
  6.         All Rights Reserved.
  7. */
  8.  
  9. #if !defined( __PORTAB__ )
  10. #define __PORTAB__
  11.  
  12. typedef          void    VOID;
  13. typedef          char    BYTE;
  14. typedef          int     WORD;
  15. typedef          long    LONG;
  16. typedef unsigned char    UBYTE;
  17. typedef unsigned int     UWORD;
  18. typedef unsigned long    ULONG;
  19.  
  20. #endif