expr: fix missing type declarations for match(), which broke on amd64 as pointers dont fit into a long
This commit is contained in:
parent
03f68c49f6
commit
fafc17b049
1 changed files with 2 additions and 0 deletions
|
@ -211,6 +211,8 @@ char *index(s, t) char *s, *t; {
|
|||
}
|
||||
|
||||
char *match(s, p)
|
||||
char *s;
|
||||
register char *p;
|
||||
{
|
||||
register char *rv;
|
||||
|
||||
|
|
Loading…
Reference in a new issue