Browse Source

Remove trailing ;

Peter S. Mazinger 18 years ago
parent
commit
17d53dd7b3
3 changed files with 3 additions and 5 deletions
  1. 1 1
      libc/stdlib/atexit.c
  2. 1 2
      libc/stdlib/ldiv.c
  3. 1 2
      libc/stdlib/lldiv.c

+ 1 - 1
libc/stdlib/atexit.c

@@ -121,7 +121,7 @@ int old_atexit(aefuncp func)
                         &__dso_handle == NULL ? NULL : __dso_handle);
 }
 #ifndef L_atexit
-weak_alias(old_atexit,atexit);
+weak_alias(old_atexit,atexit)
 #endif
 #endif
 

+ 1 - 2
libc/stdlib/ldiv.c

@@ -57,6 +57,5 @@ ldiv (long int numer, long int denom)
 
 #if __WORDSIZE == 64
 #undef imaxdiv
-weak_alias (ldiv, imaxdiv);
+weak_alias (ldiv, imaxdiv)
 #endif
-

+ 1 - 2
libc/stdlib/lldiv.c

@@ -58,6 +58,5 @@ lldiv (long long int numer, long long int denom)
 
 #if __WORDSIZE != 64
 #undef imaxdiv
-weak_alias (lldiv, imaxdiv);
+weak_alias (lldiv, imaxdiv)
 #endif
-