Fix mzscheme multimap example

This commit is contained in:
William S Fulton 2019-02-06 22:52:24 +00:00
commit 80e9034425
4 changed files with 6 additions and 5 deletions

View file

@ -27,7 +27,7 @@ int gcdmain(int argc, char *argv[]) {
return 0;
}
int count(char *bytes, int len, char c) {
int charcount(char *bytes, int len, char c) {
int i;
int count = 0;
for (i = 0; i < len; i++) {