forked from bminor/glibc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2000-12-15 Andreas Jaeger <[email protected]> * stdio-common/scanf9.c (main): Reformat and change to avoid warnings. * stdio-common/tstdiomisc.c: Make local functions static. * stdio-common/tst-printf.c: Likewise. * elf/constload2.c: Add prototype declarations to shut up gcc. * elf/dep1.c: Likewise. * elf/dep2.c: Likewise. * elf/dep3.c: Likewise. * elf/dep4.c: Likewise. * elf/ltglobmod2.c: Likewise. * libio/fmemopen.c: Make local functions static. * elf/Makefile (distribute): Added testobj.h. * elf/testobj.h: New file. * elf/testobj1.c: Include testobj.h and move prototype declarations to testobj.h. * elf/testobj2.c: Likewise. * elf/testobj3.c: Likewise. * elf/testobj4.c: Likewise. * elf/testobj5.c: Likewise. * elf/testobj6.c: Likewise. * elf/testobj1_1.c: Likewise. * elf/preloadtest.c: Likewise.
- Loading branch information
Showing
21 changed files
with
113 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,34 @@ | ||
2000-12-15 Andreas Jaeger <[email protected]> | ||
|
||
* stdio-common/scanf9.c (main): Reformat and change to avoid | ||
warnings. | ||
|
||
* stdio-common/tstdiomisc.c: Make local functions static. | ||
* stdio-common/tst-printf.c: Likewise. | ||
|
||
* elf/constload2.c: Add prototype declarations to shut up gcc. | ||
* elf/dep1.c: Likewise. | ||
* elf/dep2.c: Likewise. | ||
* elf/dep3.c: Likewise. | ||
* elf/dep4.c: Likewise. | ||
* elf/ltglobmod2.c: Likewise. | ||
|
||
* libio/fmemopen.c: Make local functions static. | ||
|
||
* elf/Makefile (distribute): Added testobj.h. | ||
|
||
* elf/testobj.h: New file. | ||
|
||
* elf/testobj1.c: Include testobj.h and move prototype | ||
declarations to testobj.h. | ||
* elf/testobj2.c: Likewise. | ||
* elf/testobj3.c: Likewise. | ||
* elf/testobj4.c: Likewise. | ||
* elf/testobj5.c: Likewise. | ||
* elf/testobj6.c: Likewise. | ||
* elf/testobj1_1.c: Likewise. | ||
* elf/preloadtest.c: Likewise. | ||
|
||
2000-12-15 Ben Collins <[email protected]> | ||
|
||
* misc/sys/cdefs.h: Fix thinko in checks for flexarr macros. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
#include <stdlib.h> | ||
|
||
extern int bar (void); | ||
extern int baz (void); | ||
extern int foo (void); | ||
|
||
void *h; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#include <unistd.h> | ||
|
||
extern int dep1 (void); | ||
extern int dep2 (void); | ||
extern int dep4 (void); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#include <unistd.h> | ||
|
||
extern int dep2 (void); | ||
extern int dep3 (void); | ||
extern int dep4 (void); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#include <unistd.h> | ||
|
||
extern int dep3 (void); | ||
|
||
static void | ||
__attribute__ ((constructor)) | ||
init (void) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#include <unistd.h> | ||
|
||
extern int dep3 (void); | ||
extern int dep4 (void); | ||
|
||
static void | ||
__attribute__ ((constructor)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
#include <stdlib.h> | ||
|
||
extern int bar (void); | ||
extern int foo (void); | ||
|
||
int | ||
foo (void) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
extern int preload (int a); | ||
|
||
extern int foo (int); | ||
|
||
extern int obj1func1 (int); | ||
|
||
extern int obj1func2 (int); | ||
|
||
extern int obj2func1 (int); | ||
|
||
extern int obj2func2 (int); | ||
|
||
extern int obj3func1 (int); | ||
|
||
extern int obj3func2 (int); | ||
|
||
extern int obj4func1 (int); | ||
|
||
extern int obj4func2 (int); | ||
|
||
extern int obj5func1 (int); | ||
|
||
extern int obj5func2 (int); | ||
|
||
extern int obj6func1 (int); | ||
|
||
extern int obj6func2 (int); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
extern int obj1func2 (int); | ||
#include "testobj.h" | ||
|
||
int | ||
obj1func1 (int a) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
extern int foo (int); | ||
#include "testobj.h" | ||
|
||
int | ||
obj6func1 (int a __attribute__ ((unused))) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters