diff options
Diffstat (limited to 'coreutils/printf.c')
-rw-r--r-- | coreutils/printf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c index aabc51e0d..d1d22f39c 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -151,10 +151,12 @@ static double my_xstrtod(const char *arg) | |||
151 | return result; | 151 | return result; |
152 | } | 152 | } |
153 | 153 | ||
154 | #if ENABLE_PLATFORM_MINGW32 | ||
154 | static int fputs_stdout(const char *s) | 155 | static int fputs_stdout(const char *s) |
155 | { | 156 | { |
156 | return fputs(s, stdout); | 157 | return fputs(s, stdout); |
157 | } | 158 | } |
159 | #endif | ||
158 | 160 | ||
159 | /* Handles %b; return 1 if output is to be short-circuited by \c */ | 161 | /* Handles %b; return 1 if output is to be short-circuited by \c */ |
160 | static int print_esc_string(const char *str) | 162 | static int print_esc_string(const char *str) |