* elf/testobj2.c (p): New function.

This commit is contained in:
Ulrich Drepper 2005-03-03 16:00:35 +00:00
parent 2e2b6e2618
commit 680d780a4b
2 changed files with 7 additions and 0 deletions

View file

@ -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>

View file

@ -23,3 +23,9 @@ preload (int a)
return fp (a) + 10;
return 10;
}
void
p (void)
{
puts ("hello world");
}