Appease unused variable warnings in libfuzzer_stub.cc (#210)

diff --git a/fuzzing/engines/libfuzzer_stub.cc b/fuzzing/engines/libfuzzer_stub.cc
index 6d999ef..d6a3210 100644
--- a/fuzzing/engines/libfuzzer_stub.cc
+++ b/fuzzing/engines/libfuzzer_stub.cc
@@ -18,6 +18,8 @@
 extern "C" int main(int argc, char** argv) __attribute__((weak));
 
 int main(int argc, char** argv) {
+  (void)argc;
+  (void)argv;
   fprintf(stderr, "*** ERROR *** This is a stub *** ERROR ***\n");
   fprintf(stderr,
           " * You have attempted to build a libFuzzer fuzz test, but did not "