CheckIPOSupported: Fix -Wstrict-prototypes warnings in check for C

Fixes: #25967
This commit is contained in:
Brad King
2024-05-09 08:21:45 -04:00
parent 648a7fb9b9
commit d5075fd10f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
int foo() int foo(void)
{ {
return 0x42; return 0x42;
} }
+1 -1
View File
@@ -1,4 +1,4 @@
int foo(); int foo(void);
int main(void) int main(void)
{ {