diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-28 06:25:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-28 06:25:27 +0000 |
commit | d16604395d63d06226987ec75f6e7171c579aad6 (patch) | |
tree | 2f6548fe63c95e3a27065cc108df535941a17304 /sysdeps/generic/initfini.c | |
parent | 0e16ecfa1e7689c0b3be626f9a3441ebb5710c70 (diff) | |
download | glibc-d16604395d63d06226987ec75f6e7171c579aad6.tar.gz glibc-d16604395d63d06226987ec75f6e7171c579aad6.tar.xz glibc-d16604395d63d06226987ec75f6e7171c579aad6.zip |
Update.
* sysdeps/generic/initfini.c (SECTION): Remove trailing semicolon. Add it where it is needed now.
Diffstat (limited to 'sysdeps/generic/initfini.c')
-rw-r--r-- | sysdeps/generic/initfini.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/initfini.c b/sysdeps/generic/initfini.c index 72f8c08574..4c43941ad0 100644 --- a/sysdeps/generic/initfini.c +++ b/sysdeps/generic/initfini.c @@ -40,7 +40,7 @@ /* We use embedded asm for .section unconditionally, as this makes it 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. */ asm ("\n#include \"defs.h\""); @@ -61,7 +61,7 @@ asm ("\n/*@TESTS_END*/"); /* The beginning of _init: */ asm ("\n/*@_init_PROLOG_BEGINS*/"); -SECTION (".init") +SECTION (".init"); void _init (void) { @@ -107,7 +107,7 @@ __gmon_start__ (void) asm ("\n/*@_init_EPILOG_ENDS*/"); asm ("\n/*@_fini_PROLOG_BEGINS*/"); -SECTION (".fini") +SECTION (".fini"); void _fini (void) { |