summaryrefslogtreecommitdiff
path: root/tests/top_main.c
diff options
context:
space:
mode:
authorMariusz PluciƄski <mplucinski@mplucinski.com>2014-07-25 16:58:17 +0200
committerWill Estes <westes575@gmail.com>2014-11-23 20:29:49 -0500
commit71e207c1ac1bb664326a5539d93a022bf0deade9 (patch)
tree015a573a5b204a00b5a7ef177d1b92e4cd8ba515 /tests/top_main.c
parentc0303615a661ee0fcb399b888efb2a653e6b66ed (diff)
Fix a few "unused parameter" warnings
Diffstat (limited to 'tests/top_main.c')
-rw-r--r--tests/top_main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/top_main.c b/tests/top_main.c
index 3ac436d..d383ce5 100644
--- a/tests/top_main.c
+++ b/tests/top_main.c
@@ -30,6 +30,9 @@
int
main ( int argc, char** argv )
{
+ (void)argc;
+ (void)argv;
+
yyscan_t scanner;
FILE *fp;
char * extra = "EXTRA";