From 8399ad49299611981f0a1e6abdbeab4b6a9e0731 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 12 Feb 2007 11:45:18 +0000 Subject: [PATCH] Digital Mars has stdint.h, so use the header on Windows with that compiler. Fixes Bugzilla #376. --- include/SDL_config_win32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_config_win32.h b/include/SDL_config_win32.h index 23e4868c2..8d32b13cd 100644 --- a/include/SDL_config_win32.h +++ b/include/SDL_config_win32.h @@ -27,7 +27,7 @@ /* This is a set of defines to configure the SDL features */ -#ifdef __GNUC__ +#if defined(__GNUC__) || defined(__DMC__) #define HAVE_STDINT_H 1 #elif defined(_MSC_VER) typedef signed __int8 int8_t;