* cygwin.din: Export wcstoimax, wcstoumax.
* posix.sgml: Move wcstoimax and wcstoumax to SUSv4 section. * include/inttypes.h: Declare wcstoimax and wcstoumax. * include/cygwin/version.h: Bump API minor number.
This commit is contained in:
parent
c65466e242
commit
de5c20c2de
|
@ -1,3 +1,10 @@
|
||||||
|
2009-02-16 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* cygwin.din: Export wcstoimax, wcstoumax.
|
||||||
|
* posix.sgml: Move wcstoimax and wcstoumax to SUSv4 section.
|
||||||
|
* include/inttypes.h: Declare wcstoimax and wcstoumax.
|
||||||
|
* include/cygwin/version.h: Bump API minor number.
|
||||||
|
|
||||||
2009-02-13 Corinna Vinschen <corinna@vinschen.de>
|
2009-02-13 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygwin.din: Export wcsnlen.
|
* cygwin.din: Export wcsnlen.
|
||||||
|
|
|
@ -1746,15 +1746,17 @@ wcsrchr NOSIGFE
|
||||||
wcsrtombs NOSIGFE
|
wcsrtombs NOSIGFE
|
||||||
wcsspn NOSIGFE
|
wcsspn NOSIGFE
|
||||||
wcsstr NOSIGFE
|
wcsstr NOSIGFE
|
||||||
wcstok NOSIGFE
|
|
||||||
wcstod NOSIGFE
|
wcstod NOSIGFE
|
||||||
wcstof NOSIGFE
|
wcstof NOSIGFE
|
||||||
|
wcstoimax = wcstoll NOSIGFE
|
||||||
|
wcstok NOSIGFE
|
||||||
wcstol NOSIGFE
|
wcstol NOSIGFE
|
||||||
wcstoll NOSIGFE
|
wcstoll NOSIGFE
|
||||||
wcstombs NOSIGFE
|
wcstombs NOSIGFE
|
||||||
_wcstombs = wcstombs NOSIGFE
|
_wcstombs = wcstombs NOSIGFE
|
||||||
wcstoul NOSIGFE
|
wcstoul NOSIGFE
|
||||||
wcstoull NOSIGFE
|
wcstoull NOSIGFE
|
||||||
|
wcstoumax = wcstoull NOSIGFE
|
||||||
wcswidth NOSIGFE
|
wcswidth NOSIGFE
|
||||||
wcsxfrm NOSIGFE
|
wcsxfrm NOSIGFE
|
||||||
wctob NOSIGFE
|
wctob NOSIGFE
|
||||||
|
|
|
@ -345,12 +345,13 @@ details. */
|
||||||
194: fcntl.h flags O_DIRECTORY, O_EXEC and O_SEARCH added.
|
194: fcntl.h flags O_DIRECTORY, O_EXEC and O_SEARCH added.
|
||||||
195: Export wcstod, wcstof.
|
195: Export wcstod, wcstof.
|
||||||
196: Export wcsnlen.
|
196: Export wcsnlen.
|
||||||
|
197: Export wcstoimax, wcstoumax.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* 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 196
|
#define CYGWIN_VERSION_API_MINOR 197
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* inttypes.h - fixed size integer types
|
/* inttypes.h - fixed size integer types
|
||||||
|
|
||||||
Copyright 2003 Red Hat, Inc.
|
Copyright 2003, 2009 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ details. */
|
||||||
#define _INTTYPES_H
|
#define _INTTYPES_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#define __need_wchar_t
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
/* fprintf() macros for signed integers */
|
/* fprintf() macros for signed integers */
|
||||||
|
|
||||||
|
@ -234,11 +236,8 @@ intmax_t _EXFUN(imaxabs, (intmax_t));
|
||||||
imaxdiv_t _EXFUN(imaxdiv, (intmax_t, intmax_t));
|
imaxdiv_t _EXFUN(imaxdiv, (intmax_t, intmax_t));
|
||||||
intmax_t _EXFUN(strtoimax, (const char *, char **, int));
|
intmax_t _EXFUN(strtoimax, (const char *, char **, int));
|
||||||
uintmax_t _EXFUN(strtoumax, (const char *, char **, int));
|
uintmax_t _EXFUN(strtoumax, (const char *, char **, int));
|
||||||
|
|
||||||
#if 0 /* Not yet defined */
|
|
||||||
intmax_t _EXFUN(wcstoimax, (const wchar_t *, wchar_t **, int));
|
intmax_t _EXFUN(wcstoimax, (const wchar_t *, wchar_t **, int));
|
||||||
uintmax_t _EXFUN(wcstoumax, (const wchar_t *, wchar_t **, int));
|
uintmax_t _EXFUN(wcstoumax, (const wchar_t *, wchar_t **, int));
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -827,12 +827,14 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
|
||||||
wcsstr
|
wcsstr
|
||||||
wcstod
|
wcstod
|
||||||
wcstof
|
wcstof
|
||||||
|
wcstoimax
|
||||||
wcstok
|
wcstok
|
||||||
wcstol
|
wcstol
|
||||||
wcstoll
|
wcstoll
|
||||||
wcstombs
|
wcstombs
|
||||||
wcstoul
|
wcstoul
|
||||||
wcstoull
|
wcstoull
|
||||||
|
wcstoumax
|
||||||
wcswidth
|
wcswidth
|
||||||
wcsxfrm
|
wcsxfrm
|
||||||
wctob
|
wctob
|
||||||
|
@ -1338,9 +1340,7 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
|
||||||
wcsncasecmp
|
wcsncasecmp
|
||||||
wcsncasecmp_l
|
wcsncasecmp_l
|
||||||
wcsnrtombs
|
wcsnrtombs
|
||||||
wcstoimax
|
|
||||||
wcstold
|
wcstold
|
||||||
wcstoumax
|
|
||||||
wcsxfrm_l
|
wcsxfrm_l
|
||||||
wctrans_l
|
wctrans_l
|
||||||
wctype_l
|
wctype_l
|
||||||
|
|
Loading…
Reference in New Issue