aboutsummaryrefslogtreecommitdiff
path: root/include/compat/stdio.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/compat/stdio.h')
-rw-r--r--include/compat/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/compat/stdio.h b/include/compat/stdio.h
index d5725c9..1874aa5 100644
--- a/include/compat/stdio.h
+++ b/include/compat/stdio.h
@@ -42,7 +42,7 @@ int posix_rename(const char *oldpath, const char *newpath);
42#define rename(oldpath, newpath) posix_rename(oldpath, newpath) 42#define rename(oldpath, newpath) posix_rename(oldpath, newpath)
43#endif 43#endif
44 44
45#ifdef _MSC_VER 45#if defined(_MSC_VER) && _MSC_VER < 1900
46#define snprintf _snprintf 46#define snprintf _snprintf
47#endif 47#endif
48 48