* 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/ltglobmod1.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
at end of compound statement.

View File

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

View File

@ -1,6 +1,8 @@
/* This function is supposed to not exist. */
extern int xyzzy (int);
extern int foo (int);
int
foo (int a)
{

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,7 @@
extern void a_function (void);
extern void b_function (void);
extern void c_function (void);
extern void d_function (void);
void
d_function (void)

View File

@ -1,5 +1,8 @@
#include <dlfcn.h>
extern int successful_rtld_next_test (void);
extern void *failing_rtld_next_use (void);
int nextmod1_dummy_var;
int

View File

@ -1,4 +1,8 @@
/* Very elaborated function. */
extern int successful_rtld_next_test (void);
int
successful_rtld_next_test (void)
{

View File

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

View File

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

View File

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

View File

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

View File

@ -2,6 +2,8 @@
#include <stdio.h>
#include <stdlib.h>
extern int call_me (void);
int
call_me (void)
{

View File

@ -2,6 +2,8 @@
#include <stdio.h>
#include <stdlib.h>
extern int call_me (void);
int
call_me (void)
{

View File

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

View File

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

View File

@ -27,6 +27,9 @@
#include <sys/types.h>
#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 "semaphore.h"
#include "../linuxthreads_db/thread_dbP.h"