* cygwin.din (imaxabs): Export.
(imaxdiv): Export. (llabs): Export. (lldiv): Export. (strtoimax): Export. (strtoumax): Export. * include/inttypes.h (imaxabs): Activate declaration. (imaxdiv): Ditto. (strtoimax): Ditto. (strtoumax): Ditto. * include/cygwin/version.h: Bump API minor.
This commit is contained in:
parent
1b96f7da45
commit
5680109cf6
@ -1,3 +1,17 @@
|
|||||||
|
2005-06-10 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* cygwin.din (imaxabs): Export.
|
||||||
|
(imaxdiv): Export.
|
||||||
|
(llabs): Export.
|
||||||
|
(lldiv): Export.
|
||||||
|
(strtoimax): Export.
|
||||||
|
(strtoumax): Export.
|
||||||
|
* include/inttypes.h (imaxabs): Activate declaration.
|
||||||
|
(imaxdiv): Ditto.
|
||||||
|
(strtoimax): Ditto.
|
||||||
|
(strtoumax): Ditto.
|
||||||
|
* include/cygwin/version.h: Bump API minor.
|
||||||
|
|
||||||
2005-06-09 Christopher Faylor <cgf@timesys.com>
|
2005-06-09 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* cygthread.cc (cygthread::detach): Improve diagnostics for what should
|
* cygthread.cc (cygthread::detach): Improve diagnostics for what should
|
||||||
|
@ -726,6 +726,8 @@ ilogb NOSIGFE
|
|||||||
_ilogb = ilogb NOSIGFE
|
_ilogb = ilogb NOSIGFE
|
||||||
ilogbf NOSIGFE
|
ilogbf NOSIGFE
|
||||||
_ilogbf = ilogbf NOSIGFE
|
_ilogbf = ilogbf NOSIGFE
|
||||||
|
imaxabs = llabs NOSIGFE
|
||||||
|
imaxdiv = lldiv NOSIGFE
|
||||||
index NOSIGFE
|
index NOSIGFE
|
||||||
_index = index NOSIGFE
|
_index = index NOSIGFE
|
||||||
inet_makeaddr NOSIGFE
|
inet_makeaddr NOSIGFE
|
||||||
@ -835,6 +837,8 @@ lgammaf_r NOSIGFE
|
|||||||
_lgammaf_r = lgammaf_r NOSIGFE
|
_lgammaf_r = lgammaf_r NOSIGFE
|
||||||
link SIGFE
|
link SIGFE
|
||||||
_link = link SIGFE
|
_link = link SIGFE
|
||||||
|
llabs NOSIGFE
|
||||||
|
lldiv NOSIGFE
|
||||||
localeconv NOSIGFE
|
localeconv NOSIGFE
|
||||||
_localeconv = localeconv NOSIGFE
|
_localeconv = localeconv NOSIGFE
|
||||||
localtime SIGFE
|
localtime SIGFE
|
||||||
@ -1383,11 +1387,13 @@ strtol NOSIGFE
|
|||||||
_strtol = strtol NOSIGFE
|
_strtol = strtol NOSIGFE
|
||||||
strtoll NOSIGFE
|
strtoll NOSIGFE
|
||||||
_strtoll = strtoll NOSIGFE
|
_strtoll = strtoll NOSIGFE
|
||||||
|
strtoimax = strtoll NOSIGFE
|
||||||
strtosigno NOSIGFE
|
strtosigno NOSIGFE
|
||||||
strtoul NOSIGFE
|
strtoul NOSIGFE
|
||||||
_strtoul = strtoul NOSIGFE
|
_strtoul = strtoul NOSIGFE
|
||||||
strtoull NOSIGFE
|
strtoull NOSIGFE
|
||||||
_strtoull = strtoull NOSIGFE
|
_strtoull = strtoull NOSIGFE
|
||||||
|
strtoumax = strtoull NOSIGFE
|
||||||
strupr NOSIGFE
|
strupr NOSIGFE
|
||||||
_strupr = strupr NOSIGFE
|
_strupr = strupr NOSIGFE
|
||||||
strxfrm NOSIGFE
|
strxfrm NOSIGFE
|
||||||
|
@ -256,12 +256,13 @@ details. */
|
|||||||
127: Export sigrelese.
|
127: Export sigrelese.
|
||||||
128: Export pselect.
|
128: Export pselect.
|
||||||
129: Export mkdtemp.
|
129: Export mkdtemp.
|
||||||
|
130: Export strtoimax, strtoumax, llabs, imaxabs, lldiv, imaxdiv.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* 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 129
|
#define CYGWIN_VERSION_API_MINOR 130
|
||||||
|
|
||||||
/* 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
|
||||||
|
@ -230,11 +230,12 @@ typedef struct {
|
|||||||
intmax_t rem;
|
intmax_t rem;
|
||||||
} imaxdiv_t;
|
} imaxdiv_t;
|
||||||
|
|
||||||
#if 0 /* Not yet defined */
|
|
||||||
intmax_t _EXFUN(imaxabs, (intmax_t));
|
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
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user