blob: 1bd63cd6001c122e24172e0be235e3d3c7779f26 [file] [log] [blame]
/**
* 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 <stdint.h>
/* When the file time does not fit into the st_Xtime field:
* crtdll-msvcr71 msvcr80+
* st_Xtime -1 -1
* errno no change EINVAL
* returns 0 0
*
* This file is used only for pre-msvcrt40 builds,
* So use the pre-msvcrt40 behavior - fills -1 without errno change.
*/
int __cdecl _fstat32i64(int _FileDes,struct _stat32i64 *_Stat)
{
struct _stat64 st;
int ret=_fstat64(_FileDes,&st);
if (ret != 0)
return ret;
_Stat->st_dev=st.st_dev;
_Stat->st_ino=st.st_ino;
_Stat->st_mode=st.st_mode;
_Stat->st_nlink=st.st_nlink;
_Stat->st_uid=st.st_uid;
_Stat->st_gid=st.st_gid;
_Stat->st_rdev=st.st_rdev;
_Stat->st_size=st.st_size;
_Stat->st_atime=((st.st_atime > INT32_MAX) ? -1 : st.st_atime);
_Stat->st_mtime=((st.st_mtime > INT32_MAX) ? -1 : st.st_mtime);
_Stat->st_ctime=((st.st_ctime > INT32_MAX) ? -1 : st.st_ctime);
return 0;
}
int (__cdecl *__MINGW_IMP_SYMBOL(_fstat32i64))(int, struct _stat32i64 *) = _fstat32i64;
#undef _fstati64
int __attribute__ ((alias ("_fstat32i64"))) __cdecl _fstati64(int, struct _stat32i64 *);
extern int __attribute__ ((alias (__MINGW64_STRINGIFY(__MINGW_IMP_SYMBOL(_fstat32i64))))) (__cdecl *__MINGW_IMP_SYMBOL(_fstati64))(int, struct _stat32i64 *);