mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-13 22:33:03 +00:00
s/return (foo)/return foo/
This commit is contained in:
@@ -45,7 +45,7 @@ hash (char *key)
|
||||
while (*cp)
|
||||
k = ((k << 1) ^ (*cp++)) & 0x3fff;
|
||||
|
||||
return (k % TABSIZE);
|
||||
return k % TABSIZE;
|
||||
}
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ copys (char *s)
|
||||
|
||||
result = xmalloc((unsigned int)i);
|
||||
strcpy(result, s);
|
||||
return (result);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@@ -122,7 +122,7 @@ getsym (char *key)
|
||||
symtab[hashval] = bp;
|
||||
}
|
||||
|
||||
return (bp);
|
||||
return bp;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user