Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/avrdude/lexer.c')
-rw-r--r--src/avrdude/lexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/avrdude/lexer.c b/src/avrdude/lexer.c
index f2d8adb4b..46d88170f 100644
--- a/src/avrdude/lexer.c
+++ b/src/avrdude/lexer.c
@@ -30,7 +30,7 @@
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
-#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(_MSC_VER)
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.