Re: getline and getdelim

2010-06-07 Thread Corinna Vinschen
On Jun 6 08:06, Andy Koppe wrote: The getline() and getdelim() functions have become part of the standard with POSIX.1-2008. Time to drop the _GNU_SOURCE guard from their declarations in sys/stdio.h? http://www.opengroup.org/onlinepubs/9699919799/functions/getline.html You're right. Fixed

getline and getdelim

2010-06-06 Thread Andy Koppe
The getline() and getdelim() functions have become part of the standard with POSIX.1-2008. Time to drop the _GNU_SOURCE guard from their declarations in sys/stdio.h? http://www.opengroup.org/onlinepubs/9699919799/functions/getline.html Andy -- Problem reports: http://cygwin.com

getline() and getdelim() in /usr/include/sys/stdio.h

2006-01-28 Thread Vladimir Panov
Hi. cygwin-1.5.19 has introduced getline() and getdelim() in /usr/include/sys/stdio.h. Since they are GNU extensions, I think that they should be enclosed with #ifdef _GNU_SOURCE. ... #endif. Vlado -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports

Re: getline() and getdelim() in /usr/include/sys/stdio.h

2006-01-28 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Vladimir Panov on 1/28/2006 3:54 PM: Hi. cygwin-1.5.19 has introduced getline() and getdelim() in /usr/include/sys/stdio.h. Since they are GNU extensions, I think that they should be enclosed with #ifdef _GNU_SOURCE. ... #endif