* cygwin.din (getline): Export.

(getdelim): Export.
	* include/sys/stdio.h (getline): Replace macro with function prototype.
	(getdelim):  Likewise.
	* include/cygwin/version.h: Bump API minor number.
This commit is contained in:
Corinna Vinschen
2005-07-09 08:22:39 +00:00
parent 88540e248e
commit 4cc9a82e3e
4 changed files with 21 additions and 5 deletions

View File

@ -11,6 +11,7 @@ details. */
#ifndef _SYS_STDIO_H_
#define _SYS_STDIO_H_
#include <sys/cdefs.h>
#include <sys/lock.h>
#if !defined(__SINGLE_THREAD__)
@ -25,7 +26,11 @@ details. */
# endif
#endif
#define getline __getline
#define getdelim __getdelim
__BEGIN_DECLS
ssize_t _EXFUN(getline, (char **, size_t *, FILE *));
ssize_t _EXFUN(getdelim, (char **, size_t *, int, FILE *));
__END_DECLS
#endif