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

This commit is contained in:
Sean McBride
2020-07-07 14:30:36 -04:00
parent ee781ac59d
commit 075ed33750
2 changed files with 2 additions and 2 deletions

View File

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

View File

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