mirror of git://sourceware.org/git/glibc.git
* elf/testobj2.c (p): New function.
This commit is contained in:
parent
2e2b6e2618
commit
680d780a4b
|
@ -10,6 +10,7 @@
|
||||||
loader is closed. Fixes unload3.
|
loader is closed. Fixes unload3.
|
||||||
* elf/tst-global1.c: New file.
|
* elf/tst-global1.c: New file.
|
||||||
* elf/Makefile (tests): Add tst-global1.
|
* elf/Makefile (tests): Add tst-global1.
|
||||||
|
* elf/testobj2.c (p): New function.
|
||||||
|
|
||||||
2005-03-03 Jakub Jelinek <jakub@redhat.com>
|
2005-03-03 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
|
|
@ -23,3 +23,9 @@ preload (int a)
|
||||||
return fp (a) + 10;
|
return fp (a) + 10;
|
||||||
return 10;
|
return 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
p (void)
|
||||||
|
{
|
||||||
|
puts ("hello world");
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue