* common.din (rawmemchr): Export.
* posix.sgml (std-gnu): Add rawmemchr. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
This commit is contained in:
parent
e3928ce48c
commit
ccccd71d58
|
@ -1,3 +1,9 @@
|
||||||
|
2013-06-24 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||||
|
|
||||||
|
* common.din (rawmemchr): Export.
|
||||||
|
* posix.sgml (std-gnu): Add rawmemchr.
|
||||||
|
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
|
||||||
|
|
||||||
2013-06-21 Corinna Vinschen <corinna@vinschen.de>
|
2013-06-21 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* path.cc (cygwin_conv_path): Handle NULL "from" path gracefully.
|
* path.cc (cygwin_conv_path): Handle NULL "from" path gracefully.
|
||||||
|
|
|
@ -897,6 +897,7 @@ raise SIGFE
|
||||||
rand NOSIGFE
|
rand NOSIGFE
|
||||||
rand_r NOSIGFE
|
rand_r NOSIGFE
|
||||||
random NOSIGFE
|
random NOSIGFE
|
||||||
|
rawmemchr NOSIGFE
|
||||||
rcmd = cygwin_rcmd SIGFE
|
rcmd = cygwin_rcmd SIGFE
|
||||||
rcmd_af = cygwin_rcmd_af SIGFE
|
rcmd_af = cygwin_rcmd_af SIGFE
|
||||||
read SIGFE
|
read SIGFE
|
||||||
|
|
|
@ -436,12 +436,13 @@ details. */
|
||||||
265: Export __b64_ntop, __b64_pton.
|
265: Export __b64_ntop, __b64_pton.
|
||||||
266: Export arc4random, arc4random_addrandom, arc4random_buf,
|
266: Export arc4random, arc4random_addrandom, arc4random_buf,
|
||||||
arc4random_stir, arc4random_uniform.
|
arc4random_stir, arc4random_uniform.
|
||||||
|
267: Export rawmemchr.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* 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 266
|
#define CYGWIN_VERSION_API_MINOR 267
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
|
@ -1145,6 +1145,7 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
|
||||||
pthread_getattr_np
|
pthread_getattr_np
|
||||||
pthread_sigqueue
|
pthread_sigqueue
|
||||||
ptsname_r
|
ptsname_r
|
||||||
|
rawmemchr
|
||||||
removexattr
|
removexattr
|
||||||
scandirat
|
scandirat
|
||||||
setxattr
|
setxattr
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
What's new:
|
What's new:
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
- New API: rawmemchr.
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
----------
|
----------
|
||||||
|
|
Loading…
Reference in New Issue