diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-04 08:39:14 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-09-04 08:39:14 +0000 |
commit | 1cf2bb4b2085758112503e7da7414d1ef52d4f48 () | |
tree | 4d368833ae69e551d1dfe8de22ed9d5edfd2eb15 /include/ruby/defines.h | |
parent | fb7a5690771fbf9f103887a86b9d82051cb25876 (diff) |
use mingw ANSI stdio
[Bug #13496] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64630 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | include/ruby/defines.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -90,9 +90,9 @@ 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))) |