Skip to content

Commit e228d15

Browse files
committed
SDL_config_windows.h: added clang to list of toolchains having stdint.h
from a patchset by Vladislav Dmitrievich Turbanov: #4062
1 parent c1c4f27 commit e228d15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/SDL_config_windows.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/* This is a set of defines to configure the SDL features */
2929

3030
#if !defined(_STDINT_H_) && (!defined(HAVE_STDINT_H) || !_HAVE_STDINT_H)
31-
#if defined(__GNUC__) || defined(__DMC__) || defined(__WATCOMC__)
31+
#if defined(__GNUC__) || defined(__DMC__) || defined(__WATCOMC__) || defined(__clang__)
3232
#define HAVE_STDINT_H 1
3333
#elif defined(_MSC_VER)
3434
typedef signed __int8 int8_t;

0 commit comments

Comments
 (0)