* include/features.h: Add comment to explain what's going to happen

here at one point.
	* include/sys/stdio.h: Guard getline and getdelim prototypes with
	_GNU_SOURCE to avoid collision with old-style declarations.
This commit is contained in:
Corinna Vinschen
2006-02-05 20:30:24 +00:00
parent 6fc6eeae96
commit 6da41754a4
3 changed files with 27 additions and 0 deletions

View File

@ -28,8 +28,10 @@ details. */
__BEGIN_DECLS
#ifdef _GNU_SOURCE
ssize_t _EXFUN(getline, (char **, size_t *, FILE *));
ssize_t _EXFUN(getdelim, (char **, size_t *, int, FILE *));
#endif /* _GNU_SOURCE */
__END_DECLS