mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
Update.
* elf/neededobj1.c: Likewise. * elf/neededobj2.c: Likewise. * elf/neededobj3.c: Likewise. * elf/neededobj4.c: Likewise. * elf/nextmod1.c: Likewise. * elf/nextmod2.c: Likewise.
This commit is contained in:
parent
715ed1e9a5
commit
5c80f57cfc
@ -21,6 +21,12 @@
|
|||||||
* elf/unload2mod.c: Likewise.
|
* elf/unload2mod.c: Likewise.
|
||||||
* elf/ltglobmod1.c: Likewise.
|
* elf/ltglobmod1.c: Likewise.
|
||||||
* elf/pathoptobj.c: Likewise.
|
* elf/pathoptobj.c: Likewise.
|
||||||
|
* elf/neededobj1.c: Likewise.
|
||||||
|
* elf/neededobj2.c: Likewise.
|
||||||
|
* elf/neededobj3.c: Likewise.
|
||||||
|
* elf/neededobj4.c: Likewise.
|
||||||
|
* elf/nextmod1.c: Likewise.
|
||||||
|
* elf/nextmod2.c: Likewise.
|
||||||
|
|
||||||
* locale/programs/ld-collate.c (collate_finish): Don't use labels
|
* locale/programs/ld-collate.c (collate_finish): Don't use labels
|
||||||
at end of compound statement.
|
at end of compound statement.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
extern int baz (void);
|
extern int baz (void);
|
||||||
|
extern int bar (void);
|
||||||
|
|
||||||
int
|
int
|
||||||
bar (void)
|
bar (void)
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
/* This function is supposed to not exist. */
|
/* This function is supposed to not exist. */
|
||||||
extern int xyzzy (int);
|
extern int xyzzy (int);
|
||||||
|
|
||||||
|
extern int foo (int);
|
||||||
|
|
||||||
int
|
int
|
||||||
foo (int a)
|
foo (int a)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
extern const char *foo (void);
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
foo (void)
|
foo (void)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
extern const char *foo (void);
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
foo (void)
|
foo (void)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
extern int bar (void);
|
||||||
|
|
||||||
int
|
int
|
||||||
bar (void)
|
bar (void)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
extern void c_function (void);
|
||||||
|
|
||||||
void
|
void
|
||||||
c_function (void)
|
c_function (void)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
extern void b_function (void);
|
||||||
extern void c_function (void);
|
extern void c_function (void);
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
extern void a_function (void);
|
||||||
extern void b_function (void);
|
extern void b_function (void);
|
||||||
extern void c_function (void);
|
extern void c_function (void);
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
extern void a_function (void);
|
extern void a_function (void);
|
||||||
extern void b_function (void);
|
extern void b_function (void);
|
||||||
extern void c_function (void);
|
extern void c_function (void);
|
||||||
|
extern void d_function (void);
|
||||||
|
|
||||||
void
|
void
|
||||||
d_function (void)
|
d_function (void)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
|
||||||
|
extern int successful_rtld_next_test (void);
|
||||||
|
extern void *failing_rtld_next_use (void);
|
||||||
|
|
||||||
int nextmod1_dummy_var;
|
int nextmod1_dummy_var;
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
/* Very elaborated function. */
|
/* Very elaborated function. */
|
||||||
|
|
||||||
|
extern int successful_rtld_next_test (void);
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
successful_rtld_next_test (void)
|
successful_rtld_next_test (void)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
extern int var_in_mod4;
|
extern int var_in_mod4;
|
||||||
|
extern int *addr (void);
|
||||||
|
|
||||||
int *
|
int *
|
||||||
addr (void)
|
addr (void)
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
extern int in_renamed (int);
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
in_renamed (int a)
|
in_renamed (int a)
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
|
extern int foo (void);
|
||||||
|
|
||||||
int some_var;
|
int some_var;
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
foo (void)
|
foo (void)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
extern int foo (void);
|
extern int foo (void);
|
||||||
|
extern int call_me (void);
|
||||||
|
|
||||||
int
|
int
|
||||||
call_me (void)
|
call_me (void)
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern int call_me (void);
|
||||||
|
|
||||||
int
|
int
|
||||||
call_me (void)
|
call_me (void)
|
||||||
{
|
{
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern int call_me (void);
|
||||||
|
|
||||||
int
|
int
|
||||||
call_me (void)
|
call_me (void)
|
||||||
{
|
{
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
extern void foo (void);
|
||||||
|
|
||||||
void
|
void
|
||||||
foo (void)
|
foo (void)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
extern void foo (void);
|
extern void foo (void);
|
||||||
|
extern void bar (void);
|
||||||
|
|
||||||
void
|
void
|
||||||
bar (void)
|
bar (void)
|
||||||
|
@ -27,6 +27,9 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <bits/libc-tsd.h> /* for _LIBC_TSD_KEY_N */
|
#include <bits/libc-tsd.h> /* for _LIBC_TSD_KEY_N */
|
||||||
|
|
||||||
|
extern long int testandset (int *spinlock);
|
||||||
|
extern int __compare_and_swap (long int *p, long int oldval, long int newval);
|
||||||
|
|
||||||
#include "pt-machine.h"
|
#include "pt-machine.h"
|
||||||
#include "semaphore.h"
|
#include "semaphore.h"
|
||||||
#include "../linuxthreads_db/thread_dbP.h"
|
#include "../linuxthreads_db/thread_dbP.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user