/*--------------------------------------------------------------------*/ /* */ /* SYSTYPES.H */ /* */ /*--------------------------------------------------------------------*/ /* * C/C++ Run Time Library - Version 6.5 * * Copyright (c) 1987, 1994 by Borland International * All Rights Reserved. * */ #if !defined( __SYSTYPES_H ) #define __SYSTYPES_H typedef signed char int8; typedef signed short int16; typedef signed long int32; typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned long uint32; #endif /* __SYSTYPES_H */