Fix pedantic warnings
With the latest build system, somehow -Wpedantic got turned on. This is
reasonable given that we expect this code to compile against a number of
targets. Fix void issues.
void function() changes to void function(void)
Change-Id: I89a2dcbcd88c7d163ffdfb67927f71b39cb7aa6f
Signed-off-by: Ed Tanous <etanous@nvidia.com>
diff --git a/tests/base64_test.h b/tests/base64_test.h
index 9e44d6f..0e25543 100644
--- a/tests/base64_test.h
+++ b/tests/base64_test.h
@@ -1,2 +1,4 @@
-void test_base64_encode_good();
-void test_base64_decode_good();
+#ifndef BASE64_TEST_H
+void test_base64_encode_good(void);
+void test_base64_decode_good(void);
+#endif