updates for MSVC 2015's degenerate headers

Note that 'perror' moves from stdio.h to stdlib.h, and 'rename' moves
from stdio.h to io.h. Also, standard C includes move from the compiler
to the Windows SDK, which changes the base path for the include files.
This commit is contained in:
Brent Cook
2015-09-08 15:00:09 -05:00
parent 9903a26661
commit 5f4e95e7c1
8 changed files with 42 additions and 3 deletions

View File

@@ -7,7 +7,11 @@
#define LIBCRYPTOCOMPAT_STRING_H
#ifdef _MSC_VER
#if _MSC_VER >= 1900
#include <../ucrt/string.h>
#else
#include <../include/string.h>
#endif
#else
#include_next <string.h>
#endif