* cygwin.din: add asprintf and vasprintf, as well as the reentrant
versions and underscore variants. * include/cygwin/version.h: bump CYGWIN_VERSION_API_MINOR.
This commit is contained in:
parent
a771176720
commit
70d61f30fe
|
@ -1,3 +1,9 @@
|
||||||
|
2003-01-10 Charles Wilson <cwilson@ece.gatech.edu>
|
||||||
|
|
||||||
|
* cygwin.din: add asprintf and vasprintf, as well as the reentrant
|
||||||
|
versions and underscore variants.
|
||||||
|
* include/cygwin/version.h: bump CYGWIN_VERSION_API_MINOR.
|
||||||
|
|
||||||
2003-01-10 Corinna Vinschen <corinna@vinschen.de>
|
2003-01-10 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* net.cc (cygwin_gethostname): Fix call to wsock function gethostname.
|
* net.cc (cygwin_gethostname): Fix call to wsock function gethostname.
|
||||||
|
|
|
@ -50,6 +50,10 @@ asinh
|
||||||
_asinh = asinh
|
_asinh = asinh
|
||||||
asinhf
|
asinhf
|
||||||
_asinhf = asinhf
|
_asinhf = asinhf
|
||||||
|
asprintf
|
||||||
|
_asprintf = asprintf
|
||||||
|
_asprintf_r
|
||||||
|
asprintf_r = _asprintf_r
|
||||||
atan
|
atan
|
||||||
_atan = atan
|
_atan = atan
|
||||||
atan2
|
atan2
|
||||||
|
@ -943,6 +947,10 @@ _utimes = utimes
|
||||||
utmpname
|
utmpname
|
||||||
_utmpname = utmpname
|
_utmpname = utmpname
|
||||||
valloc
|
valloc
|
||||||
|
vasprintf
|
||||||
|
_vasprintf = vasprintf
|
||||||
|
_vasprintf_r
|
||||||
|
vasprintf_r = _vasprintf_r
|
||||||
vfiprintf
|
vfiprintf
|
||||||
_vfiprintf = vfiprintf
|
_vfiprintf = vfiprintf
|
||||||
vfork
|
vfork
|
||||||
|
|
|
@ -167,12 +167,13 @@ details. */
|
||||||
67: Export pthread_getsequence_np
|
67: Export pthread_getsequence_np
|
||||||
68: Export netdb stuff
|
68: Export netdb stuff
|
||||||
69: Export strtof
|
69: Export strtof
|
||||||
|
70: Export asprintf, _asprintf_r, vasprintf, _vasprintf_r
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* 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 69
|
#define CYGWIN_VERSION_API_MINOR 70
|
||||||
|
|
||||||
/* 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