diff --git a/src/util.h b/src/util.h index 0668fbc..9035890 100644 --- a/src/util.h +++ b/src/util.h @@ -46,6 +46,7 @@ #include #include #include +#include #ifdef GFLAGS_HAVE_SYS_STAT_H # include // 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);