msvcrt: Change return type of _splitpath_s to errno_t.

This commit is contained in:
Alex Henrie 2022-11-02 21:46:42 -06:00 committed by Alexandre Julliard
parent 38bef31fb6
commit 52066ef248

View file

@ -1062,7 +1062,7 @@ int CDECL _wrmdir(const wchar_t * dir)
/******************************************************************
* _splitpath_s (MSVCRT.@)
*/
int CDECL _splitpath_s(const char* inpath,
errno_t CDECL _splitpath_s(const char* inpath,
char* drive, size_t sz_drive,
char* dir, size_t sz_dir,
char* fname, size_t sz_fname,