summaryrefslogtreecommitdiffstats
path: root/support/nfs/wildmat.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/nfs/wildmat.c')
-rw-r--r--support/nfs/wildmat.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/support/nfs/wildmat.c b/support/nfs/wildmat.c
index ba53b3a..c5b4c78 100644
--- a/support/nfs/wildmat.c
+++ b/support/nfs/wildmat.c
@@ -59,9 +59,7 @@
** Match text and p, return TRUE, FALSE, or ABORT.
*/
static int
-DoMatch(text, p)
- register char *text;
- register char *p;
+DoMatch(char *text, char *p)
{
register int last;
register int matched;
@@ -126,9 +124,7 @@ DoMatch(text, p)
** User-level routine. Returns TRUE or FALSE.
*/
int
-wildmat(text, p)
- char *text;
- char *p;
+wildmat(char *text, char *p)
{
#ifdef OPTIMIZE_JUST_STAR
if (p[0] == '*' && p[1] == '\0')