]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 28 Jun 2000 06:25:27 +0000 (06:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 28 Jun 2000 06:25:27 +0000 (06:25 +0000)
* sysdeps/generic/initfini.c (SECTION): Remove trailing semicolon.
Add it where it is needed now.

ChangeLog
sysdeps/generic/initfini.c

index fa9eaeafe8279372b147ab8848b78895c4f1c45a..96422839f108c373e2b62267abf62ddad5791216 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 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
        the input charset into account when generating the hash table.
        (allocate_arrays): Correct setting default width.  Not all empty slots
index 72f8c08574f6c4c65245e330cbbea6224357375d..4c43941ad0c9de465fac545258716fdbf3891658 100644 (file)
@@ -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)
 {
This page took 0.090851 seconds and 5 git commands to generate.