diff options
-rw-r--r-- | ld/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-elfweak/size_foo.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index e167642..77319fc 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-06-23 Andreas Schwab <schwab@suse.de> + + * ld-elfweak/size_foo.c (foo): Fix warning about implicit return + type. + 2005-06-10 Alan Modra <amodra@bigpond.net.au> * ld-cris/libdso-10.d: Adjust for elf.sc .bss change. diff --git a/ld/testsuite/ld-elfweak/size_foo.c b/ld/testsuite/ld-elfweak/size_foo.c index 2276f62..f7a605a 100644 --- a/ld/testsuite/ld-elfweak/size_foo.c +++ b/ld/testsuite/ld-elfweak/size_foo.c @@ -2,6 +2,7 @@ extern void bar (); +void foo () { bar (); |