remove sprintf deprecated message

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8959 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-03-05 00:38:54 +00:00
commit 0e576a3403
18 changed files with 218 additions and 77 deletions

View file

@ -1,5 +1,10 @@
/* File : example.cxx */
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
# define _CRT_SECURE_NO_DEPRECATE
#endif
#include "example.h"
#include <stdio.h>
#include <stdlib.h>