1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-30 08:57:49 +00:00

Allow for warning-free build of cl65 with MS VC on warning level 3.

This commit is contained in:
Oliver Schmidt 2013-04-09 23:32:18 +02:00
parent d38b008080
commit 97d2d92fb5

View File

@ -41,7 +41,9 @@
#else
# define NEED_SPAWN 1
#endif
#if defined(_MSC_VER)
# pragma warning(disable : 4996)
#endif
#include <stdio.h>