2010/8/18 Mitani: > * provided by nptl, which is developed by Ulrich Drepper. > */ > > -#ifndef _GNU_SOURCE > -#define _GNU_SOURCE > -#endif > #include <pthread.h> > #include <limits.h> > #include <stdio.h> > @@ -30,6 +27,10 @@ > #include <unistd.h> > #include "posixtest.h" > > +#ifndef _GNU_SOURCE > +#define _GNU_SOURCE > +#endif
defining any _XXX_SOURCE after including any C library headers is pointless as they are checked in C library headers -mike ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
