mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 14:01:21 +00:00
COMP: Convert C function prototypes to use (void) instead of ().
This commit is contained in:
parent
62145a5811
commit
4d9fa41124
@ -1,6 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
extern int testExe1lib();
|
||||
extern int testExe1lib(void);
|
||||
|
||||
int main(int argc, const char* argv[])
|
||||
{
|
||||
|
@ -1 +1 @@
|
||||
int testExe1lib() { return 0; }
|
||||
int testExe1lib(void) { return 0; }
|
||||
|
@ -1 +1 @@
|
||||
int testLib1() { return 0; }
|
||||
int testLib1(void) { return 0; }
|
||||
|
@ -1,4 +1,4 @@
|
||||
|
||||
extern int testLib1();
|
||||
extern int testLib1(void);
|
||||
|
||||
int testLib2() { return testLib1(); }
|
||||
int testLib2(void) { return testLib1(); }
|
||||
|
Loading…
Reference in New Issue
Block a user