* cygwin.din: Reflect name change from strtodf to strtof. Export strtof.
* include/cygwin/version.h: Bump API minor number.
This commit is contained in:
parent
c049dd5a78
commit
11b087d571
|
@ -1,3 +1,9 @@
|
||||||
|
2002-12-06 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* cygwin.din: Reflect name change from strtodf to strtof. Export
|
||||||
|
strtof.
|
||||||
|
* include/cygwin/version.h: Bump API minor number.
|
||||||
|
|
||||||
2002-12-04 Steve Osborn <bub@io.com>
|
2002-12-04 Steve Osborn <bub@io.com>
|
||||||
|
|
||||||
* fhandler.h (fhandler_termios::line_edit): Change return from an int
|
* fhandler.h (fhandler_termios::line_edit): Change return from an int
|
||||||
|
|
|
@ -844,8 +844,9 @@ strstr
|
||||||
_strstr = strstr
|
_strstr = strstr
|
||||||
strtod
|
strtod
|
||||||
_strtod = strtod
|
_strtod = strtod
|
||||||
strtodf
|
strtof
|
||||||
_strtodf = strtodf
|
strtodf = strtof
|
||||||
|
_strtodf = strtof
|
||||||
strtok
|
strtok
|
||||||
_strtok = strtok
|
_strtok = strtok
|
||||||
strtok_r
|
strtok_r
|
||||||
|
|
|
@ -166,12 +166,13 @@ details. */
|
||||||
66: Export nl_langinfo
|
66: Export nl_langinfo
|
||||||
67: Export pthread_getsequence_np
|
67: Export pthread_getsequence_np
|
||||||
68: Export netdb stuff
|
68: Export netdb stuff
|
||||||
|
69: Export strtof
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* 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 68
|
#define CYGWIN_VERSION_API_MINOR 69
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
Loading…
Reference in New Issue