diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-09 12:23:51 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-03-09 12:23:51 +0000 |
commit | d0a847fd8a6f89095b20c44fac4f28530481a567 (patch) | |
tree | 1f54c4e3a8b1d6144faba0cd5e5d221fbd61858d /libpthread/linuxthreads/sysdeps/unix | |
parent | 6ba0493bc34fe6ebeb33c7ab25215f75c0b07c05 (diff) |
Remove unneeded ; after *_alias
Diffstat (limited to 'libpthread/linuxthreads/sysdeps/unix')
-rw-r--r-- | libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c index af1581a4c..b9ada6417 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/allocrtsig.c @@ -56,7 +56,7 @@ __libc_current_sigrtmin (void) init (); return current_rtmin; } -strong_alias (__libc_current_sigrtmin, __libc_current_sigrtmin_private); +strong_alias (__libc_current_sigrtmin, __libc_current_sigrtmin_private) libc_hidden_def (__libc_current_sigrtmin) /* Return number of available real-time signal with lowest priority. */ @@ -67,7 +67,7 @@ __libc_current_sigrtmax (void) init (); return current_rtmax; } -strong_alias (__libc_current_sigrtmax, __libc_current_sigrtmax_private); +strong_alias (__libc_current_sigrtmax, __libc_current_sigrtmax_private) libc_hidden_def (__libc_current_sigrtmax) /* Allocate real-time signal with highest/lowest available @@ -84,4 +84,4 @@ __libc_allocate_rtsig (int high) return high ? current_rtmin++ : current_rtmax--; } -strong_alias (__libc_allocate_rtsig, __libc_allocate_rtsig_private); +strong_alias (__libc_allocate_rtsig, __libc_allocate_rtsig_private) |