diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2005-10-14 19:46:47 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2005-10-14 19:46:47 +0000 |
commit | 45ef618c8faa07655ec2a8a844b7fdeef0036f02 (patch) | |
tree | e99b6e836052daa589c73dcf97b401a952a1ba0a /usr.bin/mg/grep.c | |
parent | 9efd76fbfee31678bd5cf9b13a6a2f6ac3280f38 (diff) |
add missing /* ARGSUSED */ to quiet lint.
Diffstat (limited to 'usr.bin/mg/grep.c')
-rw-r--r-- | usr.bin/mg/grep.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/mg/grep.c b/usr.bin/mg/grep.c index c61bbef8f66..18fc8959d39 100644 --- a/usr.bin/mg/grep.c +++ b/usr.bin/mg/grep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grep.c,v 1.19 2005/10/13 20:28:49 deraadt Exp $ */ +/* $OpenBSD: grep.c,v 1.20 2005/10/14 19:46:46 kjell Exp $ */ /* * Copyright (c) 2001 Artur Grabowski <art@openbsd.org>. * Copyright (c) 2005 Kjell Wooding <kjell@openbsd.org>. @@ -78,6 +78,7 @@ grep_init(void) maps_add((KEYMAP *)&compilemap, "compile"); } +/* ARGSUSED */ static int grep(int f, int n) { @@ -111,6 +112,7 @@ grep(int f, int n) return (TRUE); } +/* ARGSUSED */ static int compile(int f, int n) { @@ -149,6 +151,7 @@ compile(int f, int n) } /* id-utils foo. */ +/* ARGSUSED */ static int gid(int f, int n) { @@ -273,6 +276,7 @@ compile_mode(char *name, char *command, char *path) return (bp); } +/* ARGSUSED */ static int compile_goto_error(int f, int n) { @@ -330,6 +334,7 @@ fail: return (FALSE); } +/* ARGSUSED */ int next_error(int f, int n) { |