diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-05-10 17:51:18 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-05-10 17:51:18 +0000 |
commit | 809b6ce7085be484e3424100f9c4bbf2d69ba4fc (patch) | |
tree | 694c37f49116e7fb2e9772b28374e4d9bd2dee8a | |
parent | f561f644e97894f6d4f07d43ae46f84dc0c4d7a4 (diff) | |
download | newlib-809b6ce7085be484e3424100f9c4bbf2d69ba4fc.zip newlib-809b6ce7085be484e3424100f9c4bbf2d69ba4fc.tar.gz newlib-809b6ce7085be484e3424100f9c4bbf2d69ba4fc.tar.bz2 |
2002-05-10 Jeff Johnston <jjohnstn@redhat.com>
* libc/string/strchr.c: Fix comment typo.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/string/strchr.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 6d3bbdd..ac758a0 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2002-05-10 Jeff Johnston <jjohnstn@redhat.com> + + * libc/string/strchr.c: Fix comment typo. + 2002-05-08 Thomas Fitzsimmons <fitzsim@redhat.com> * acinclude.m4: Add support for --enable-newlib-multithread. diff --git a/newlib/libc/string/strchr.c b/newlib/libc/string/strchr.c index de4585f..60b0fde 100644 --- a/newlib/libc/string/strchr.c +++ b/newlib/libc/string/strchr.c @@ -12,8 +12,8 @@ ANSI_SYNOPSIS TRAD_SYNOPSIS #include <string.h> char * strchr(<[string]>, <[c]>); - char *<[string]>; - int *<[c]>; + const char *<[string]>; + int <[c]>; DESCRIPTION This function finds the first occurence of <[c]> (converted to |