1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-05 06:15:17 +02:00

Replace empty argument lists with `void' in tests

This commit is contained in:
Tommi Rantala 2012-09-21 09:20:46 +03:00
parent 890e23eb9d
commit e9f161a677
3 changed files with 6 additions and 6 deletions

View file

@ -79,19 +79,19 @@ do_backtrace (void)
}
void
foo3 ()
foo3 (void)
{
do_backtrace ();
}
void
foo2 ()
foo2 (void)
{
foo3 ();
}
void
foo1 ()
foo1 (void)
{
foo2 ();
}

View file

@ -1471,7 +1471,7 @@ bar(void *p UNUSED)
return NULL;
}
int doit ()
int doit (void)
{
pthread_t tid[NTHREAD];
int i;

View file

@ -90,13 +90,13 @@ do_backtrace (void)
}
void
foo3 ()
foo3 (void)
{
do_backtrace ();
}
void
foo2 ()
foo2 (void)
{
foo3 ();
}