On Fri, Oct 10, 2014 at 07:23:02AM -0700, Chuck Forsberg WA7KGX wrote:
> Why does this program fragment fail to compile if a C standard
> is specified?  I compiles without complaint with a simple cc -c qq.c

You chose a strict conformance mode, in which sys/stat.h doesn't provide
those.  You need either -D_XOPEN_SOURCE, -D_GNU_SOURCE, -D_DEFALT_SOURCE
etc. feature test macros (see info libc on it), or -std=gnu11 (or
-std=gnu99, -std=gnu89 etc.).

        Jakub
-- 
test mailing list
[email protected]
To unsubscribe:
https://admin.fedoraproject.org/mailman/listinfo/test

Reply via email to