merge trunk head (37902)
[reactos.git] / reactos / lib / sdk / crt / stdio / stat.c
1 #define _USE_STAT64 0
2 #include "stat64.c"
3
4
5 //only version needed
6 //int CDECL _fstati64(int fd, struct _stati64* buf)
7 //{
8 // int ret;
9 // struct __stat64 buf64;
10 //
11 // ret = _fstat64(fd, &buf64);
12 // if (!ret)
13 // stat64_to_stati64(&buf64, buf);
14 // return ret;
15 //}