Remove duplicate declarations of strtoimax and strtoumax in inttypes.i
This commit is contained in:
parent
dc8428889e
commit
d7f6167e02
2 changed files with 4 additions and 7 deletions
|
|
@ -5,6 +5,9 @@ See the RELEASENOTES file for a summary of changes in each release.
|
|||
Version 3.0.1 (in progress)
|
||||
===========================
|
||||
|
||||
2014-04-08: wsfulton
|
||||
SF Bug #1366 - Remove duplicate declarations of strtoimax and strtoumax in inttypes.i
|
||||
|
||||
2014-04-08: wsfulton
|
||||
[Java C#] Enums which have been ignored via %ignore and are subsequently
|
||||
used are handled slightly differently. Type wrapper classes are now generated
|
||||
|
|
|
|||
|
|
@ -41,12 +41,6 @@ extern "C" {
|
|||
/* Return the `imaxdiv_t' representation of the value of NUMER over DENOM. */
|
||||
extern imaxdiv_t imaxdiv (intmax_t numer, intmax_t denom);
|
||||
|
||||
/* Like `strtol' but convert to `intmax_t'. */
|
||||
extern intmax_t strtoimax (const char *nptr, char **endptr, int base);
|
||||
|
||||
/* Like `strtoul' but convert to `uintmax_t'. */
|
||||
extern uintmax_t strtoumax (const char *nptr, char ** endptr, int base);
|
||||
|
||||
#ifdef SWIG_WCHAR
|
||||
/* Like `wcstol' but convert to `intmax_t'. */
|
||||
extern intmax_t wcstoimax (const wchar_t *nptr, wchar_t **endptr, int base);
|
||||
|
|
@ -84,7 +78,7 @@ extern "C" {
|
|||
extern uintmax_t wcstoumax (const wchar_t *nptr, wchar_t **endptr, int base);
|
||||
#endif
|
||||
|
||||
#endif /* SWIGWORDSIZE32 */
|
||||
#endif /* SWIGWORDSIZE64 */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue