diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-06-16 16:02:07 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-06-16 16:02:07 +0000 |
commit | 1a99b6f85a123a1430ef41a3b2ae79eef7c0f768 (patch) | |
tree | 53d05de5e45747fd018ad89363af583fc8a19f9b | |
parent | aa201fc9dfa772b005755214b6b96a27d4d7a2f9 (diff) | |
download | newlib-1a99b6f85a123a1430ef41a3b2ae79eef7c0f768.zip newlib-1a99b6f85a123a1430ef41a3b2ae79eef7c0f768.tar.gz newlib-1a99b6f85a123a1430ef41a3b2ae79eef7c0f768.tar.bz2 |
2009-06-16 Craig Howland <howland@LGSInnovations.com>
* libc/ctype/local.h (__locale_charset): Add arguments to
prototype
* libc/stdlib/local.h (__locale_charset): Ditto.
-rw-r--r-- | newlib/ChangeLog | 6 | ||||
-rw-r--r-- | newlib/libc/ctype/local.h | 2 | ||||
-rw-r--r-- | newlib/libc/stdlib/local.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index ef829ef..af250d6 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,11 @@ 2009-06-16 Craig Howland <howland@LGSInnovations.com> + * libc/ctype/local.h (__locale_charset): Add arguments to + prototype + * libc/stdlib/local.h (__locale_charset): Ditto. + +2009-06-16 Craig Howland <howland@LGSInnovations.com> + * libc/include/math.h: Simplify fpclassify, isinf, isnan, and signbit macros to remove un-necessary extension use. isinf and isnan also changed to use fpclassify. isfinite macro modified to run faster by diff --git a/newlib/libc/ctype/local.h b/newlib/libc/ctype/local.h index 7dac354..1a16520 100644 --- a/newlib/libc/ctype/local.h +++ b/newlib/libc/ctype/local.h @@ -20,7 +20,7 @@ #define WC_UPPER 11 #define WC_XDIGIT 12 -extern char *__locale_charset (); +extern char *__locale_charset(_NOARGS); /* internal function to translate JP to Unicode */ #ifdef __CYGWIN__ diff --git a/newlib/libc/stdlib/local.h b/newlib/libc/stdlib/local.h index 703d70e..93a3b4b 100644 --- a/newlib/libc/stdlib/local.h +++ b/newlib/libc/stdlib/local.h @@ -5,7 +5,7 @@ char * _EXFUN(_gcvt,(struct _reent *, double , int , char *, char, int)); -char *__locale_charset (); +char *__locale_charset(_NOARGS); #ifndef __mbstate_t_defined #include <wchar.h> |