diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | elf/testobj2.c | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -10,6 +10,7 @@ loader is closed. Fixes unload3. * elf/tst-global1.c: New file. * elf/Makefile (tests): Add tst-global1. + * elf/testobj2.c (p): New function. 2005-03-03 Jakub Jelinek <jakub@redhat.com> diff --git a/elf/testobj2.c b/elf/testobj2.c index 6514c56..f00ba9f 100644 --- a/elf/testobj2.c +++ b/elf/testobj2.c @@ -23,3 +23,9 @@ preload (int a) return fp (a) + 10; return 10; } + +void +p (void) +{ + puts ("hello world"); +} |