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

This commit is contained in:
cinap_lenrek 2014-07-12 03:02:21 +02:00
parent 03f68c49f6
commit fafc17b049

View file

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