mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Add missing errno.h include statement and use int instead of errno_t.
This commit is contained in:
parent
e31f179ae0
commit
e491f0161d
1 changed files with 2 additions and 1 deletions
|
@ -46,6 +46,7 @@
|
|||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <errno.h>
|
||||
#ifdef GFLAGS_HAVE_SYS_STAT_H
|
||||
# include <sys/stat.h> // for mkdir
|
||||
#endif
|
||||
|
@ -356,7 +357,7 @@ inline bool SafeGetEnv(const char *varname, std::string &valstr)
|
|||
return true;
|
||||
}
|
||||
|
||||
inline errno_t SafeFOpen(FILE **fp, const char* fname, const char *mode)
|
||||
inline int SafeFOpen(FILE **fp, const char* fname, const char *mode)
|
||||
{
|
||||
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
||||
return fopen_s(fp, fname, mode);
|
||||
|
|
Loading…
Add table
Reference in a new issue