summaryrefslogtreecommitdiff
path: root/libpthread/linuxthreads/join.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-03-09 12:23:51 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-03-09 12:23:51 +0000
commitd0a847fd8a6f89095b20c44fac4f28530481a567 (patch)
tree1f54c4e3a8b1d6144faba0cd5e5d221fbd61858d /libpthread/linuxthreads/join.c
parent6ba0493bc34fe6ebeb33c7ab25215f75c0b07c05 (diff)
Remove unneeded ; after *_alias
Diffstat (limited to 'libpthread/linuxthreads/join.c')
-rw-r--r--libpthread/linuxthreads/join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/join.c b/libpthread/linuxthreads/join.c
index c9c030f6f..57ea54e34 100644
--- a/libpthread/linuxthreads/join.c
+++ b/libpthread/linuxthreads/join.c
@@ -28,7 +28,7 @@ void __pthread_exit(void * retval)
{
__pthread_do_exit (retval, CURRENT_STACK_FRAME);
}
-strong_alias (__pthread_exit, pthread_exit);
+strong_alias (__pthread_exit, pthread_exit)
void __pthread_do_exit(void *retval, char *currentframe)
{