home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / borhead.zip / SYSTYPES.H < prev    next >
Text File  |  1994-11-09  |  790b  |  27 lines

  1. /*--------------------------------------------------------------------*/
  2. /*                                                                    */
  3. /*  SYSTYPES.H                                                        */
  4. /*                                                                    */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 1.5
  9.  *
  10.  *      Copyright (c) 1987, 1994 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14.  
  15. #if !defined( __SYSTYPES_H )
  16. #define __SYSTYPES_H
  17.  
  18. typedef signed char int8;
  19. typedef signed short int16;
  20. typedef signed long int32;
  21.  
  22. typedef unsigned char uint8;
  23. typedef unsigned short uint16;
  24. typedef unsigned long uint32;
  25.  
  26. #endif  /* __SYSTYPES_H  */
  27.