diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-06 15:44:34 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-06 15:44:34 +0000 |
commit | dec40863edc983e258161516a57413659b7fcfb9 (patch) | |
tree | 8f5258c4c2883b883a2c91d35be5cd3a0ab9d022 /libc | |
parent | 92a148d641dced0bdb03bc9e6166356499e49f80 (diff) |
Correct typo, iconv binary does not use the internal versions
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/wchar/wchar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/misc/wchar/wchar.c b/libc/misc/wchar/wchar.c index 9f3da8626..1a16fc9d6 100644 --- a/libc/misc/wchar/wchar.c +++ b/libc/misc/wchar/wchar.c @@ -1618,7 +1618,7 @@ int main(int argc, char **argv) break; } do { - if ((s = __strchr(opt_chars,*p)) == NULL) { + if ((s = strchr(opt_chars,*p)) == NULL) { USAGE: s = basename(progname); fprintf(stderr, @@ -1695,7 +1695,7 @@ int main(int argc, char **argv) } } if (ni) { /* still bytes in buffer! */ - __memmove(ibuf, pi, ni); + memmove(ibuf, pi, ni); } } |