define the whole range of standard integer types for watcom
authorHans Ulrich Niedermann <hun@n-dimensional.de>
Fri, 11 Mar 2005 15:48:44 +0000 (16:48 +0100)
committerHans Ulrich Niedermann <hun@n-dimensional.de>
Fri, 11 Mar 2005 15:48:44 +0000 (16:48 +0100)
contrib/watcom/_stdint.h

index 60ab875..75853e8 100644 (file)
@@ -2,10 +2,13 @@
 #ifndef __STDINT_H\r
 #define __STDINT_H\r
 #include <sys/types.h>\r
-typedef unsigned char uint8_t;\r
-typedef unsigned short uint16_t;\r
-typedef unsigned long uint32_t;\r
-typedef signed long int32_t;\r
+typedef  unsigned char   uint8_t;\r
+typedef  unsigned short  uint16_t;\r
+typedef  unsigned long   uint32_t;\r
+\r
+typedef    signed char   int8_t;\r
+typedef    signed short  int16_t;\r
+typedef    signed long   int32_t;\r
 #endif\r
 \r
 \r