* cygwin.din (__getline): Export.
(__getdelim): Export. * include/sys/stdio.h (getline): Define as __getline. (getdelim): Define as __getdelim. * include/cygwin/version.h: Bump API minor number.
This commit is contained in:
parent
ff5f15a91d
commit
2f5de4af55
@ -1,3 +1,11 @@
|
|||||||
|
2005-07-08 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* cygwin.din (__getline): Export.
|
||||||
|
(__getdelim): Export.
|
||||||
|
* include/sys/stdio.h (getline): Define as __getline.
|
||||||
|
(getdelim): Define as __getdelim.
|
||||||
|
* include/cygwin/version.h: Bump API minor number.
|
||||||
|
|
||||||
2005-07-06 Christopher Faylor <cgf@timesys.com>
|
2005-07-06 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
Eliminate (void) cast on standalone function calls throughout.
|
Eliminate (void) cast on standalone function calls throughout.
|
||||||
|
@ -35,6 +35,8 @@ __eprintf SIGFE
|
|||||||
__errno NOSIGFE
|
__errno NOSIGFE
|
||||||
__fpclassifyd NOSIGFE
|
__fpclassifyd NOSIGFE
|
||||||
__fpclassifyf NOSIGFE
|
__fpclassifyf NOSIGFE
|
||||||
|
__getline NOSIGFE
|
||||||
|
__getdelim NOSIGFE
|
||||||
__getreent NOSIGFE
|
__getreent NOSIGFE
|
||||||
__infinity NOSIGFE
|
__infinity NOSIGFE
|
||||||
__main NOSIGFE
|
__main NOSIGFE
|
||||||
|
@ -259,12 +259,13 @@ details. */
|
|||||||
130: Export strtoimax, strtoumax, llabs, imaxabs, lldiv, imaxdiv.
|
130: Export strtoimax, strtoumax, llabs, imaxabs, lldiv, imaxdiv.
|
||||||
131: Export inet_ntop, inet_pton.
|
131: Export inet_ntop, inet_pton.
|
||||||
132: Add GLOB_LIMIT flag to glob.
|
132: Add GLOB_LIMIT flag to glob.
|
||||||
|
133: Export __getline, __getdelim.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||||
|
|
||||||
#define CYGWIN_VERSION_API_MAJOR 0
|
#define CYGWIN_VERSION_API_MAJOR 0
|
||||||
#define CYGWIN_VERSION_API_MINOR 132
|
#define CYGWIN_VERSION_API_MINOR 133
|
||||||
|
|
||||||
/* There is also a compatibity version number associated with the
|
/* There is also a compatibity version number associated with the
|
||||||
shared memory regions. It is incremented when incompatible
|
shared memory regions. It is incremented when incompatible
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* sys/stdio.h
|
/* sys/stdio.h
|
||||||
|
|
||||||
Copyright 2004 Red Hat, Inc.
|
Copyright 2004, 2005 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
@ -25,4 +25,7 @@ details. */
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define getline __getline
|
||||||
|
#define getdelim __getdelim
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user