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 4ddd63a..2af8f3e 100644
--- a/include/compat/stdio.h
+++ b/include/compat/stdio.h
@@ -44,7 +44,7 @@ int posix_rename(const char *oldpath, const char *newpath);
44#define rename(oldpath, newpath) posix_rename(oldpath, newpath) 44#define rename(oldpath, newpath) posix_rename(oldpath, newpath)
45#endif 45#endif
46 46
47#ifdef _MSC_VER 47#if defined(_MSC_VER) && _MSC_VER < 1900
48#define snprintf _snprintf 48#define snprintf _snprintf
49#endif 49#endif
50 50