Commit 4db1aeb5 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msvcrt: Change return type of freopen_s to errno_t.

parent 01777127
......@@ -4650,7 +4650,7 @@ FILE* CDECL freopen(const char *path, const char *mode, FILE* file)
/*********************************************************************
* freopen_s (MSVCRT.@)
*/
int CDECL freopen_s(FILE** pFile,
errno_t CDECL freopen_s(FILE** pFile,
const char *path, const char *mode, FILE* file)
{
if (!MSVCRT_CHECK_PMT(pFile != NULL)) return EINVAL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment