* 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:
Andreas Jaeger 2000-12-17 17:50:56 +00:00
parent 715ed1e9a5
commit 5c80f57cfc
21 changed files with 45 additions and 0 deletions

View File

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

View File

@ -1,4 +1,5 @@
extern int baz (void); extern int baz (void);
extern int bar (void);
int int
bar (void) bar (void)

View File

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

View File

@ -1,3 +1,5 @@
extern const char *foo (void);
const char * const char *
foo (void) foo (void)
{ {

View File

@ -1,3 +1,5 @@
extern const char *foo (void);
const char * const char *
foo (void) foo (void)
{ {

View File

@ -1,3 +1,5 @@
extern int bar (void);
int int
bar (void) bar (void)
{ {

View File

@ -1,3 +1,5 @@
extern void c_function (void);
void void
c_function (void) c_function (void)
{ {

View File

@ -1,3 +1,4 @@
extern void b_function (void);
extern void c_function (void); extern void c_function (void);
void void

View File

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

View File

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

View File

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

View File

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

View File

@ -1,4 +1,5 @@
extern int var_in_mod4; extern int var_in_mod4;
extern int *addr (void);
int * int *
addr (void) addr (void)

View File

@ -1,3 +1,6 @@
extern int in_renamed (int);
int int
in_renamed (int a) in_renamed (int a)
{ {

View File

@ -1,5 +1,8 @@
extern int foo (void);
int some_var; int some_var;
int int
foo (void) foo (void)
{ {

View File

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

View File

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

View File

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

View File

@ -1,3 +1,5 @@
extern void foo (void);
void void
foo (void) foo (void)
{ {

View File

@ -1,4 +1,5 @@
extern void foo (void); extern void foo (void);
extern void bar (void);
void void
bar (void) bar (void)

View File

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