teach SDL_config_win32.h that Watcom has stdint.h

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1444 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2017-07-28 20:04:22 +00:00
parent be437dd258
commit 48e09d2d1e

View file

@ -27,7 +27,7 @@
/* This is a set of defines to configure the SDL features */
#if defined(__GNUC__) || defined(__DMC__)
#if defined(__GNUC__) || defined(__DMC__) || defined(__WATCOMC__)
#define HAVE_STDINT_H 1
#elif defined(_MSC_VER)
typedef signed __int8 int8_t;