diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-03 08:20:41 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-03 08:20:41 +0000 |
commit | c115b39e033979bac7cfd2db5735549430dc14f7 (patch) | |
tree | f9af139ddb057dbeb190614779602347b12d0ca4 /include/ruby/defines.h | |
parent | 5cde9a39a33dfc1803e51204b578d5db3b591f31 (diff) |
Declare as gnu_printf on mingw
[Bug #13496]
From: MSP-Greg <[email protected]>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/defines.h')
-rw-r--r-- | include/ruby/defines.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ruby/defines.h b/include/ruby/defines.h index 5774870e76..f5fd5bfcef 100644 --- a/include/ruby/defines.h +++ b/include/ruby/defines.h @@ -90,8 +90,13 @@ extern "C" { #endif /* __GNUC__ >= 3 */ #ifdef __GNUC__ +#ifdef __MINGW32__ +#define PRINTF_ARGS(decl, string_index, first_to_check) \ + decl __attribute__((format(gnu_printf, string_index, first_to_check))) +#else #define PRINTF_ARGS(decl, string_index, first_to_check) \ decl __attribute__((format(printf, string_index, first_to_check))) +#endif #else #define PRINTF_ARGS(decl, string_index, first_to_check) decl #endif |