From 81f8222fbc24920d7a2da900d1a7c9866b464382 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 12 Feb 2007 11:46:08 +0000 Subject: [PATCH] Merged r2956:2957 from branches/SDL-1.2: Digital Mars stdint.h usage. 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 c82dc5f5f..786af80b8 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;