* common.din (__bsd_qsort_r): Add.
(qsort_r): Add. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
This commit is contained in:
parent
bf9897549d
commit
0548dda67f
|
@ -1,3 +1,9 @@
|
|||
2014-12-05 Yaakov Selkowitz <yselkowitz@cygwin.com>
|
||||
|
||||
* common.din (__bsd_qsort_r): Add.
|
||||
(qsort_r): Add.
|
||||
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
|
||||
|
||||
2014-12-02 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* flock.cc (create_lock_in_parent): Make lf_obj handle inheritable.
|
||||
|
|
|
@ -41,6 +41,7 @@ __assert_func NOSIGFE
|
|||
__assertfail NOSIGFE
|
||||
__b64_ntop NOSIGFE
|
||||
__b64_pton NOSIGFE
|
||||
__bsd_qsort_r NOSIGFE
|
||||
__cxa_atexit = cygwin__cxa_atexit SIGFE
|
||||
__cxa_finalize SIGFE
|
||||
__dn_comp SIGFE
|
||||
|
@ -920,6 +921,7 @@ putwc SIGFE
|
|||
putwchar SIGFE
|
||||
pwrite SIGFE
|
||||
qsort NOSIGFE
|
||||
qsort_r NOSIGFE
|
||||
quotactl SIGFE
|
||||
raise SIGFE
|
||||
rand NOSIGFE
|
||||
|
|
|
@ -457,12 +457,13 @@ details. */
|
|||
279: Export stime.
|
||||
280: Static atexit in libcygwin.a, CW_FIXED_ATEXIT.
|
||||
281: Add CW_GETNSS_PWD_SRC, CW_GETNSS_GRP_SRC.
|
||||
282: Export __bsd_qsort_r, qsort_r.
|
||||
*/
|
||||
|
||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||
|
||||
#define CYGWIN_VERSION_API_MAJOR 0
|
||||
#define CYGWIN_VERSION_API_MINOR 281
|
||||
#define CYGWIN_VERSION_API_MINOR 282
|
||||
|
||||
/* There is also a compatibity version number associated with the
|
||||
shared memory regions. It is incremented when incompatible
|
||||
|
|
Loading…
Reference in New Issue