grischka wrote:
Though it seems to me that if you do
    #define _wstat _wstat64
then you'd also need to
    #define _stat _stat64
in order to have the st_Xtime members filled correctly.

Hm.  Actually I wonder since when tcc doesn't warn if a function
is called with an incompatible struct:

    struct a;
    struct b;
    void f(struct a** ppa)
    {
    }
    int main(int argc, char **argv)
    {
        struct b ** ppb = NULL;
        f(ppb);
        return 0;
    }

Someone wants to fix this?

Thanks,

-- gr



_______________________________________________
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to