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 /newlib/libc/string/strchr.c | |
parent | f561f644e97894f6d4f07d43ae46f84dc0c4d7a4 (diff) | |
download | cygnal-809b6ce7085be484e3424100f9c4bbf2d69ba4fc.tar.gz cygnal-809b6ce7085be484e3424100f9c4bbf2d69ba4fc.tar.bz2 cygnal-809b6ce7085be484e3424100f9c4bbf2d69ba4fc.zip |
2002-05-10 Jeff Johnston <jjohnstn@redhat.com>
* libc/string/strchr.c: Fix comment typo.
Diffstat (limited to 'newlib/libc/string/strchr.c')
-rw-r--r-- | newlib/libc/string/strchr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/strchr.c b/newlib/libc/string/strchr.c index de4585f75..60b0fde8e 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 |