Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set _CRT_SECURE_NO_WARNINGS in gsw_check_functions.c #83

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions gsw_check_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
** $Id: gsw_check_functions.c,v 0db1b20bdf1b 2015/08/26 21:39:20 fdelahoyde $
** $Version: 3.05.0-1 $
*/

/* This ignores MSVC warnings about "unsafe: functions (strcpy, strncat,
** strcat) in the gsw_check_functions.c file . While the security advice
** may be sound in the context of the main library, these functions do not pose
** a security risk in the context of this test executable.
*/
#define _CRT_SECURE_NO_WARNINGS

#include <stdio.h>
#include <stdarg.h>
#include <string.h>
Expand Down
Loading