windows/msvc: Fix warnings regarding function declarations.

Fix missing mkdir and gettimeofday declarations, then silence msvc-specific
compiler warning C4996: 'The POSIX name for this item is deprecated'.
This commit is contained in:
stijn
2020-03-20 11:00:41 +01:00
committed by Damien George
parent 1b3e0e10b9
commit f62cc41fac
3 changed files with 6 additions and 1 deletions

View File

@@ -33,6 +33,9 @@
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#ifdef _MSC_VER
#include <direct.h> // For mkdir
#endif
#include "py/mpconfig.h"
#include "py/runtime.h"