Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b4975 commit e2a0602Copy full SHA for e2a0602
1 file changed
PC/pyconfig.h
@@ -27,6 +27,16 @@ MS_CORE_DLL.
27
28
*/
29
30
+/* Visual Studio 2005 introduces deprecation warnings for
31
+ "insecure" and POSIX functions. The insecure functions should
32
+ be replaces by *_s versions (according to Microsoft); the
33
+ POSIX functions by _* versions (which, according to Microsoft,
34
+ would be ISO C conforming). Neither renaming is feasible, so
35
+ we just silence the warnings. */
36
+
37
+#define _CRT_SECURE_NO_DEPRECATE 1
38
+#define _CRT_NONSTDC_NO_DEPRECATE 1
39
40
#include <io.h>
41
#define HAVE_SYS_UTIME_H
42
#define HAVE_HYPOT
0 commit comments