mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +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/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.
|
||||
|
@ -1,4 +1,5 @@
|
||||
extern int baz (void);
|
||||
extern int bar (void);
|
||||
|
||||
int
|
||||
bar (void)
|
||||
|
@ -1,6 +1,8 @@
|
||||
/* This function is supposed to not exist. */
|
||||
extern int xyzzy (int);
|
||||
|
||||
extern int foo (int);
|
||||
|
||||
int
|
||||
foo (int a)
|
||||
{
|
||||
|
@ -1,3 +1,5 @@
|
||||
extern const char *foo (void);
|
||||
|
||||
const char *
|
||||
foo (void)
|
||||
{
|
||||
|
@ -1,3 +1,5 @@
|
||||
extern const char *foo (void);
|
||||
|
||||
const char *
|
||||
foo (void)
|
||||
{
|
||||
|
@ -1,3 +1,5 @@
|
||||
extern int bar (void);
|
||||
|
||||
int
|
||||
bar (void)
|
||||
{
|
||||
|
@ -1,3 +1,5 @@
|
||||
extern void c_function (void);
|
||||
|
||||
void
|
||||
c_function (void)
|
||||
{
|
||||
|
@ -1,3 +1,4 @@
|
||||
extern void b_function (void);
|
||||
extern void c_function (void);
|
||||
|
||||
void
|
||||
|
@ -1,3 +1,4 @@
|
||||
extern void a_function (void);
|
||||
extern void b_function (void);
|
||||
extern void c_function (void);
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -1,4 +1,8 @@
|
||||
/* Very elaborated function. */
|
||||
|
||||
extern int successful_rtld_next_test (void);
|
||||
|
||||
|
||||
int
|
||||
successful_rtld_next_test (void)
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
extern int var_in_mod4;
|
||||
extern int *addr (void);
|
||||
|
||||
int *
|
||||
addr (void)
|
||||
|
@ -1,3 +1,6 @@
|
||||
extern int in_renamed (int);
|
||||
|
||||
|
||||
int
|
||||
in_renamed (int a)
|
||||
{
|
||||
|
@ -1,5 +1,8 @@
|
||||
extern int foo (void);
|
||||
|
||||
int some_var;
|
||||
|
||||
|
||||
int
|
||||
foo (void)
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
extern int foo (void);
|
||||
extern int call_me (void);
|
||||
|
||||
int
|
||||
call_me (void)
|
||||
|
@ -2,6 +2,8 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
extern int call_me (void);
|
||||
|
||||
int
|
||||
call_me (void)
|
||||
{
|
||||
|
@ -2,6 +2,8 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
extern int call_me (void);
|
||||
|
||||
int
|
||||
call_me (void)
|
||||
{
|
||||
|
@ -1,3 +1,5 @@
|
||||
extern void foo (void);
|
||||
|
||||
void
|
||||
foo (void)
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
extern void foo (void);
|
||||
extern void bar (void);
|
||||
|
||||
void
|
||||
bar (void)
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user