* libc/ctype/wctype.c (_DEFUN): Remove empty default case, as
modern versions of GCC issue a warning.
This commit is contained in:
parent
c6f53ff6be
commit
b73263e401
|
@ -1,5 +1,8 @@
|
||||||
2003-09-05 Ben Elliston <bje@wasabisystems.com>
|
2003-09-05 Ben Elliston <bje@wasabisystems.com>
|
||||||
|
|
||||||
|
* libc/ctype/wctype.c (_DEFUN): Remove empty default case, as
|
||||||
|
modern versions of GCC issue a warning.
|
||||||
|
|
||||||
* libc/machine/xscale/memcmp.c (memcmp): Strip trailing whitespace
|
* libc/machine/xscale/memcmp.c (memcmp): Strip trailing whitespace
|
||||||
after continuation characters that induces a warning from modern
|
after continuation characters that induces a warning from modern
|
||||||
versions of GCC.
|
versions of GCC.
|
||||||
|
|
|
@ -120,7 +120,6 @@ _DEFUN (_wctype_r, (r, c),
|
||||||
if (!strcmp (c, "xdigit"))
|
if (!strcmp (c, "xdigit"))
|
||||||
return WC_XDIGIT;
|
return WC_XDIGIT;
|
||||||
break;
|
break;
|
||||||
default:
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* otherwise invalid */
|
/* otherwise invalid */
|
||||||
|
|
Loading…
Reference in New Issue