mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-04 03:22:14 +03:00
Update.
* sysdeps/generic/initfini.c (SECTION): Remove trailing semicolon. Add it where it is needed now.
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
2000-06-27 Ulrich Drepper <drepper@redhat.com>
|
2000-06-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/initfini.c (SECTION): Remove trailing semicolon.
|
||||||
|
Add it where it is needed now.
|
||||||
|
|
||||||
* locale/programs/ld-ctype.c (ctype_finish): Take all characters from
|
* locale/programs/ld-ctype.c (ctype_finish): Take all characters from
|
||||||
the input charset into account when generating the hash table.
|
the input charset into account when generating the hash table.
|
||||||
(allocate_arrays): Correct setting default width. Not all empty slots
|
(allocate_arrays): Correct setting default width. Not all empty slots
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
/* We use embedded asm for .section unconditionally, as this makes it
|
/* We use embedded asm for .section unconditionally, as this makes it
|
||||||
easier to insert the necessary directives into crtn.S. */
|
easier to insert the necessary directives into crtn.S. */
|
||||||
#define SECTION(x) asm (".section " x );
|
#define SECTION(x) asm (".section " x )
|
||||||
|
|
||||||
/* Embed an #include to pull in the alignment and .end directives. */
|
/* Embed an #include to pull in the alignment and .end directives. */
|
||||||
asm ("\n#include \"defs.h\"");
|
asm ("\n#include \"defs.h\"");
|
||||||
@@ -61,7 +61,7 @@ asm ("\n/*@TESTS_END*/");
|
|||||||
/* The beginning of _init: */
|
/* The beginning of _init: */
|
||||||
asm ("\n/*@_init_PROLOG_BEGINS*/");
|
asm ("\n/*@_init_PROLOG_BEGINS*/");
|
||||||
|
|
||||||
SECTION (".init")
|
SECTION (".init");
|
||||||
void
|
void
|
||||||
_init (void)
|
_init (void)
|
||||||
{
|
{
|
||||||
@@ -107,7 +107,7 @@ __gmon_start__ (void)
|
|||||||
asm ("\n/*@_init_EPILOG_ENDS*/");
|
asm ("\n/*@_init_EPILOG_ENDS*/");
|
||||||
asm ("\n/*@_fini_PROLOG_BEGINS*/");
|
asm ("\n/*@_fini_PROLOG_BEGINS*/");
|
||||||
|
|
||||||
SECTION (".fini")
|
SECTION (".fini");
|
||||||
void
|
void
|
||||||
_fini (void)
|
_fini (void)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user