4150a18910 Tests: Fix -Wstrict-prototypes warnings in some C sources Acked-by: Kitware Robot <[email protected]> Merge-request: !4744
@@ -5,7 +5,7 @@
#endif
extern int a(void);
-EXPORT int b()
+EXPORT int b(void)
{
return a();
}
@@ -1,5 +1,5 @@
#ifdef REQUIRED
-int required()
+int required(void)
return 0;
@@ -1,3 +1,3 @@
-void nothing()
+void nothing(void)