Mute strerror/strcpy warnings is MSVC build. (#815)

This commit is contained in:
Eugene Kliuchnikov 2020-07-02 19:45:57 +02:00 committed by GitHub
parent 5519352661
commit fc823290a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,11 @@
/* Command line interface for Brotli library. */
/* Mute strerror/strcpy warnings. */
#if !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS
#endif
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>