]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libiberty/strchr.c
Imported gcc-4.4.3
[msp430-gcc.git] / libiberty / strchr.c
index 1f71c5143d08814b675d80e01a886e6741a4276c..935805ef4f4d236f49be446d7c2c139b60c10996 100644 (file)
@@ -16,9 +16,7 @@ null character, the results are undefined.
 #include <ansidecl.h>
 
 char *
-strchr (s, c)
-  register const char *s;
-  int c;
+strchr (register const char *s, int c)
 {
   do {
     if (*s == c)