On Mon, Oct 09, 2006 at 12:28:55PM +0400, Sergey Vlasov wrote: > On Mon, Oct 09, 2006 at 01:19:59AM +0400, Dmitry V. Levin wrote: > > #if !defined(_GNU_SOURCE) && defined(__GLIBC__) > > # define _GNU_SOURCE > > #endif > > Это вроде бы не должно работать - после определения __GLIBC__ (в > features.h) определять _GNU_SOURCE уже поздно. Да, пожалуй. Значит, просто #ifndef _GNU_SOURCE # define _GNU_SOURCE #endif -- ldv