mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
Update.
* elf/loadfail.c: Little cosmetic changes to avoid warnings. * elf/loadtest.c: Likewise. * elf/multiload.c: Likewise. * elf/next.c: Likewise. * elf/nodelete.c: Likewise. * elf/noload.c: Likewise. * elf/order.c: Likewise. * elf/origtest.c: Likewise. * elf/preloadtest.c: Likewise. * elf/restest1.c: Likewise.
This commit is contained in:
parent
68784f809a
commit
a850e77f3f
11
ChangeLog
11
ChangeLog
@ -1,5 +1,16 @@
|
|||||||
2000-11-25 Ulrich Drepper <drepper@redhat.com>
|
2000-11-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/loadfail.c: Little cosmetic changes to avoid warnings.
|
||||||
|
* elf/loadtest.c: Likewise.
|
||||||
|
* elf/multiload.c: Likewise.
|
||||||
|
* elf/next.c: Likewise.
|
||||||
|
* elf/nodelete.c: Likewise.
|
||||||
|
* elf/noload.c: Likewise.
|
||||||
|
* elf/order.c: Likewise.
|
||||||
|
* elf/origtest.c: Likewise.
|
||||||
|
* elf/preloadtest.c: Likewise.
|
||||||
|
* elf/restest1.c: Likewise.
|
||||||
|
|
||||||
* sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
|
* sysdeps/i386/i486/bits/string.h (__strncat_g) [i686]: Fourth
|
||||||
parameter of asm must be in %ecx.
|
parameter of asm must be in %ecx.
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@ main (void)
|
|||||||
return h != NULL;
|
return h != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -146,7 +146,7 @@ main (int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Unload all loaded modules. */
|
/* Unload all loaded modules. */
|
||||||
for (count = 0; count < NOBJS; ++count)
|
for (count = 0; count < (int) NOBJS; ++count)
|
||||||
if (testobjs[count].handle != NULL)
|
if (testobjs[count].handle != NULL)
|
||||||
{
|
{
|
||||||
printf ("\nclose: %s: l_initfini = %p, l_versions = %p\n",
|
printf ("\nclose: %s: l_initfini = %p, l_versions = %p\n",
|
||||||
@ -174,6 +174,7 @@ main (int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -97,6 +97,7 @@ main (void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -5,7 +5,7 @@ extern int successful_rtld_next_test (void);
|
|||||||
extern void *failing_rtld_next_use (void);
|
extern void *failing_rtld_next_use (void);
|
||||||
|
|
||||||
|
|
||||||
int
|
static int
|
||||||
do_test (void)
|
do_test (void)
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
|
@ -11,6 +11,7 @@ int fini_ran;
|
|||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
__attribute__ ((noreturn))
|
||||||
handler (int sig)
|
handler (int sig)
|
||||||
{
|
{
|
||||||
siglongjmp (jmpbuf, 1);
|
siglongjmp (jmpbuf, 1);
|
||||||
|
@ -63,6 +63,7 @@ main (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
void init (void) __attribute__ ((constructor));
|
||||||
void
|
void
|
||||||
__attribute__ ((constructor))
|
__attribute__ ((constructor))
|
||||||
init (void)
|
init (void)
|
||||||
@ -7,6 +8,7 @@ init (void)
|
|||||||
write (1, "4", 1);
|
write (1, "4", 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void fini (void) __attribute__ ((destructor));
|
||||||
void
|
void
|
||||||
__attribute__ ((destructor))
|
__attribute__ ((destructor))
|
||||||
fini (void)
|
fini (void)
|
||||||
|
@ -31,6 +31,7 @@ main (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -12,6 +12,7 @@ main (void)
|
|||||||
return res != 92;
|
return res != 92;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -49,6 +49,7 @@ main (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
extern int foo (int a);
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user