* cygwin.din (strchrnul): Export.
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump. * posix.sgml (std-gnu): Add strchrnul.
This commit is contained in:
parent
cb840afddf
commit
ec0f7c31f3
|
@ -1,3 +1,9 @@
|
||||||
|
2011-03-27 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||||
|
|
||||||
|
* cygwin.din (strchrnul): Export.
|
||||||
|
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
|
||||||
|
* posix.sgml (std-gnu): Add strchrnul.
|
||||||
|
|
||||||
2011-03-27 Christopher Faylor <me.cygwin2011@cgf.cx>
|
2011-03-27 Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||||
|
|
||||||
* dll_init.cc (dll::init): Accommodate ill-behaved dlls who don't fill
|
* dll_init.cc (dll::init): Accommodate ill-behaved dlls who don't fill
|
||||||
|
|
|
@ -1583,6 +1583,7 @@ strcat NOSIGFE
|
||||||
_strcat = strcat NOSIGFE
|
_strcat = strcat NOSIGFE
|
||||||
strchr NOSIGFE
|
strchr NOSIGFE
|
||||||
_strchr = strchr NOSIGFE
|
_strchr = strchr NOSIGFE
|
||||||
|
strchrnul NOSIGFE
|
||||||
strcmp NOSIGFE
|
strcmp NOSIGFE
|
||||||
_strcmp = strcmp NOSIGFE
|
_strcmp = strcmp NOSIGFE
|
||||||
strcoll NOSIGFE
|
strcoll NOSIGFE
|
||||||
|
|
|
@ -400,12 +400,13 @@ details. */
|
||||||
234: Export program_invocation_name, program_invocation_short_name.
|
234: Export program_invocation_name, program_invocation_short_name.
|
||||||
235: Export madvise.
|
235: Export madvise.
|
||||||
236: Export pthread_yield, __xpg_strerror_r.
|
236: Export pthread_yield, __xpg_strerror_r.
|
||||||
|
237: Export strchrnul.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* 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 236
|
#define CYGWIN_VERSION_API_MINOR 237
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
|
@ -1112,6 +1112,7 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
|
||||||
pow10f
|
pow10f
|
||||||
removexattr
|
removexattr
|
||||||
setxattr
|
setxattr
|
||||||
|
strchrnul
|
||||||
tdestroy
|
tdestroy
|
||||||
timegm
|
timegm
|
||||||
timelocal
|
timelocal
|
||||||
|
|
Loading…
Reference in New Issue