From: Martin Quinson Date: Sat, 12 Sep 2015 23:17:30 +0000 (+0200) Subject: [MSVC] don't whine on fopen being insecure X-Git-Tag: v3_12~232 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1cea9fbd30a5e473a588f1c188f30fd929eb1e4e?ds=sidebyside [MSVC] don't whine on fopen being insecure --- diff --git a/include/xbt/sysdep.h b/include/xbt/sysdep.h index 3ca9bc8c8d..d127bec37c 100644 --- a/include/xbt/sysdep.h +++ b/include/xbt/sysdep.h @@ -71,10 +71,11 @@ XBT_PUBLIC(char *) bprintf(const char *fmt, ...) _XBT_GNUC_PRINTF(1, 2); * @{ */ -#ifdef _MSC_VER +#ifdef _MSC_VER /* Microsoft wants to improve the code quality blah blah blah */ /* warning C4996: '_strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. */ -/* Blah blah blah */ # define strdup _strdup +/* warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. */ +# define _CRT_SECURE_NO_WARNINGS #endif /** @brief Like strdup, but xbt_die() on error */