2001-06-10 Roland McGrath <roland@frob.com>

* elf/reldep4mod2.c: Use fully typed decls to avoid warnings.
	* elf/reldep4mod4.c: Likewise.
This commit is contained in:
Roland McGrath 2001-06-10 23:06:25 +00:00
parent fecb794f59
commit 563e3528e5
2 changed files with 8 additions and 6 deletions

View File

@ -1,6 +1,7 @@
extern int foo();
extern int foo (void);
int bar ()
int
bar (void)
{
foo();
return foo ();
}

View File

@ -1,6 +1,7 @@
extern int foo();
extern int foo (void);
int bar ()
int
bar (void)
{
foo();
return foo ();
}