https://issues.dlang.org/show_bug.cgi?id=22777

--- Comment #1 from [email protected] ---
this seems to be the correct definition of the struct for microsoft C runtime:

struct struct_stat
{
        uint st_dev;
        ushort st_ino;
        ushort st_mode;
        short st_nlink;
        short st_uid;
        short st_gid;
        uint st_rdev;
        int st_size;
        int st_atime;
        int st_mtime;
        int st_ctime;
}

assembled from wine's msvcrt sources at
https://github.com/wine-mirror/wine/blob/e909986/include/msvcrt/sys/stat.h

--

Reply via email to