X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=src%2Fdos%2Finttypes.h;h=14d6395043d8ac15bdad383ec6121e178dac84dc;hp=6f941adf761bf08cb78736388ce138e581136915;hb=05672cb8988cd30a798ea3fbce124695fc76f09c;hpb=8a64d603ee67cd98070360b40938e123ea845154 diff --git a/src/dos/inttypes.h b/src/dos/inttypes.h index 6f941ad..14d6395 100644 --- a/src/dos/inttypes.h +++ b/src/dos/inttypes.h @@ -18,7 +18,7 @@ along with this program. If not, see . #ifndef INT_TYPES_H_ #define INT_TYPES_H_ -#if defined(__DOS__) || defined(WIN32) +#if defined(__WATCOMC__) && __WATCOMC__ < 0x1200 typedef char int8_t; typedef short int16_t; typedef long int32_t; @@ -27,7 +27,8 @@ typedef unsigned char uint8_t; typedef unsigned short uint16_t; typedef unsigned long uint32_t; -typedef unsigned long intptr_t; +typedef long intptr_t; +typedef unsigned long uintptr_t; #else #include #endif