_findclose() exists on MinGW, so prefix it.
This commit is contained in:
parent
73ea238f46
commit
98b2e381f6
|
@ -202,7 +202,7 @@ int _chdrive(int newdrive)
|
|||
* NOTES
|
||||
* See FindClose.
|
||||
*/
|
||||
int _findclose(long hand)
|
||||
int MSVCRT__findclose(long hand)
|
||||
{
|
||||
TRACE(":handle %ld\n",hand);
|
||||
if (!FindClose((HANDLE)hand))
|
||||
|
|
|
@ -225,7 +225,7 @@
|
|||
@ cdecl _filelength(long)
|
||||
@ cdecl -ret64 _filelengthi64(long)
|
||||
@ cdecl _fileno(ptr) MSVCRT__fileno
|
||||
@ cdecl _findclose(long)
|
||||
@ cdecl _findclose(long) MSVCRT__findclose
|
||||
@ cdecl _findfirst(str ptr) MSVCRT__findfirst
|
||||
@ cdecl _findfirsti64(str ptr) MSVCRT__findfirsti64
|
||||
@ cdecl _findnext(long ptr) MSVCRT__findnext
|
||||
|
|
Loading…
Reference in New Issue