Commit c28dc45d authored by Pavel's avatar Pavel

removing warning about _CRT_SECURE_NO_WARNINGS if it is already defined

	modified:   mongoose.c
parent 98b6c5e1
......@@ -19,7 +19,9 @@
// THE SOFTWARE.
#if defined(_WIN32)
#if !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS // Disable deprecation warning in VS2005
#endif
#else
#ifdef __linux__
#define _XOPEN_SOURCE 600 // For flockfile() on Linux
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment