expr: fix missing type declarations for match(), which broke on amd64 as pointers dont fit into a long

front
cinap_lenrek 2014-07-12 03:02:21 +02:00
parent 03f68c49f6
commit fafc17b049
1 changed files with 2 additions and 0 deletions

View File

@ -211,6 +211,8 @@ char *index(s, t) char *s, *t; {
}
char *match(s, p)
char *s;
register char *p;
{
register char *rv;