mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-21 23:27:39 +01:00
Replace empty argument lists with `void' in tests
This commit is contained in:
parent
890e23eb9d
commit
e9f161a677
3 changed files with 6 additions and 6 deletions
|
@ -79,19 +79,19 @@ do_backtrace (void)
|
|||
}
|
||||
|
||||
void
|
||||
foo3 ()
|
||||
foo3 (void)
|
||||
{
|
||||
do_backtrace ();
|
||||
}
|
||||
|
||||
void
|
||||
foo2 ()
|
||||
foo2 (void)
|
||||
{
|
||||
foo3 ();
|
||||
}
|
||||
|
||||
void
|
||||
foo1 ()
|
||||
foo1 (void)
|
||||
{
|
||||
foo2 ();
|
||||
}
|
||||
|
|
|
@ -1471,7 +1471,7 @@ bar(void *p UNUSED)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
int doit ()
|
||||
int doit (void)
|
||||
{
|
||||
pthread_t tid[NTHREAD];
|
||||
int i;
|
||||
|
|
|
@ -90,13 +90,13 @@ do_backtrace (void)
|
|||
}
|
||||
|
||||
void
|
||||
foo3 ()
|
||||
foo3 (void)
|
||||
{
|
||||
do_backtrace ();
|
||||
}
|
||||
|
||||
void
|
||||
foo2 ()
|
||||
foo2 (void)
|
||||
{
|
||||
foo3 ();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue