home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 14.ddi / GENINC.PAK / SYSTYPES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  790 b   |  27 lines

  1. /*--------------------------------------------------------------------*/
  2. /*                                                                    */
  3. /*  SYSTYPES.H                                                        */
  4. /*                                                                    */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 6.0
  9.  *
  10.  *      Copyright (c) 1987, 1993 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.