From a2a0392a22c33db725087e2a4b9765e310da04e6 Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Fri, 11 Mar 2005 16:48:44 +0100 Subject: [PATCH] define the whole range of standard integer types for watcom --- contrib/watcom/_stdint.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/contrib/watcom/_stdint.h b/contrib/watcom/_stdint.h index 60ab875..75853e8 100644 --- a/contrib/watcom/_stdint.h +++ b/contrib/watcom/_stdint.h @@ -2,10 +2,13 @@ #ifndef __STDINT_H #define __STDINT_H #include -typedef unsigned char uint8_t; -typedef unsigned short uint16_t; -typedef unsigned long uint32_t; -typedef signed long int32_t; +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned long uint32_t; + +typedef signed char int8_t; +typedef signed short int16_t; +typedef signed long int32_t; #endif -- 2.7.4