Browse Source

Tests: Fix pedantic warning about missing void in C function declaration

Sean McBride 5 years ago
parent
commit
075ed33750

+ 1 - 1
Tests/XCTest/StaticLibExample/StaticLibExample.c

@@ -1,6 +1,6 @@
 #include "StaticLibExample.h"
 
-int FourtyFour()
+int FourtyFour(void)
 {
   return 44;
 }

+ 1 - 1
Tests/XCTest/StaticLibExample/StaticLibExample.h

@@ -1 +1 @@
-int FourtyFour();
+int FourtyFour(void);