|  | /** | 
|  | * This file has no copyright assigned and is placed in the Public Domain. | 
|  | * This file is part of the mingw-w64 runtime package. | 
|  | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | 
|  | */ | 
|  |  | 
|  | #include <sys/stat.h> | 
|  | #include <stdlib.h> | 
|  | #include "__mingw_fix_stat.h" | 
|  |  | 
|  | int __cdecl wstat64(const wchar_t *_Filename, struct stat64 *_Stat) | 
|  | { | 
|  | wchar_t *_path = __mingw_fix_wstat_path(_Filename); | 
|  | if (_path == NULL && _Filename != NULL) | 
|  | return -1; | 
|  | int ret = _wstat64(_path, (struct _stat64 *)_Stat); | 
|  | return __mingw_fix_stat_finish(ret, _Filename, _path, _Stat->st_mode); | 
|  | } | 
|  | int (__cdecl *__MINGW_IMP_SYMBOL(wstat64))(const wchar_t *, struct stat64 *) = wstat64; |