diff options
author | Vincent Labrecque <vincent@cvs.openbsd.org> | 2003-11-09 00:16:37 +0000 |
---|---|---|
committer | Vincent Labrecque <vincent@cvs.openbsd.org> | 2003-11-09 00:16:37 +0000 |
commit | 86022fde0e17a0151fb490b0eb9ae76fd611ce40 (patch) | |
tree | 9659f51d3ef97cf5c5cb10b0d90e2eecfae06a84 | |
parent | 570f0524bfab88a840d8bea015ea7343bc8b1951 (diff) |
knf
-rw-r--r-- | usr.bin/mg/grep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mg/grep.c b/usr.bin/mg/grep.c index d69799fcfb9..e51a39faa65 100644 --- a/usr.bin/mg/grep.c +++ b/usr.bin/mg/grep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grep.c,v 1.8 2003/04/08 21:19:57 vincent Exp $ */ +/* $OpenBSD: grep.c,v 1.9 2003/11/09 00:16:36 vincent Exp $ */ /* * Copyright (c) 2001 Artur Grabowski <art@openbsd.org>. All rights reserved. * @@ -27,12 +27,12 @@ #include "kbd.h" #include "funmap.h" -static int compile_goto_error(int f, int n); -static int next_error(int f, int n); +static int compile_goto_error(int, int); +static int next_error(int, int); static int grep(int, int); static int compile(int, int); static int gid(int, int); -static BUFFER *compile_mode(char *name, char *command); +static BUFFER *compile_mode(char *, char *); void grep_init(void); |