libcsa: Change to ANSI function definitions

This commit is contained in:
Peter Howkins
2018-06-28 03:54:49 +01:00
parent e43dbc5460
commit e6f38a9910
6 changed files with 11 additions and 13 deletions

View File

@@ -225,9 +225,7 @@ void _DtCmDestroyHash(void * t, int (*ptr)(), void * usr_arg)
free(tbl);
}
static int hash_string(s,modulo)
register char *s;
int modulo;
static int hash_string(char *s, int modulo)
{
register unsigned result = 0;
register int i=1;