* 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:
Corinna Vinschen
2005-06-10 12:11:35 +00:00
parent 1b96f7da45
commit 5680109cf6
4 changed files with 24 additions and 2 deletions

View File

@ -256,12 +256,13 @@ details. */
127: Export sigrelese.
128: Export pselect.
129: Export mkdtemp.
130: Export strtoimax, strtoumax, llabs, imaxabs, lldiv, imaxdiv.
*/
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
#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
shared memory regions. It is incremented when incompatible

View File

@ -230,11 +230,12 @@ typedef struct {
intmax_t rem;
} imaxdiv_t;
#if 0 /* Not yet defined */
intmax_t _EXFUN(imaxabs, (intmax_t));
imaxdiv_t _EXFUN(imaxdiv, (intmax_t, intmax_t));
intmax_t _EXFUN(strtoimax, (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));
uintmax_t _EXFUN(wcstoumax, (const wchar_t *, wchar_t **, int));
#endif