From d0a847fd8a6f89095b20c44fac4f28530481a567 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 9 Mar 2006 12:23:51 +0000 Subject: Remove unneeded ; after *_alias --- libpthread/linuxthreads/cancel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpthread/linuxthreads/cancel.c') diff --git a/libpthread/linuxthreads/cancel.c b/libpthread/linuxthreads/cancel.c index 27ec7f9c2..34356801a 100644 --- a/libpthread/linuxthreads/cancel.c +++ b/libpthread/linuxthreads/cancel.c @@ -43,7 +43,7 @@ int __pthread_setcancelstate(int state, int * oldstate) __pthread_do_exit(PTHREAD_CANCELED, CURRENT_STACK_FRAME); return 0; } -strong_alias (__pthread_setcancelstate, pthread_setcancelstate); +strong_alias (__pthread_setcancelstate, pthread_setcancelstate) int __pthread_setcanceltype(int type, int * oldtype) { @@ -58,7 +58,7 @@ int __pthread_setcanceltype(int type, int * oldtype) __pthread_do_exit(PTHREAD_CANCELED, CURRENT_STACK_FRAME); return 0; } -strong_alias (__pthread_setcanceltype, pthread_setcanceltype); +strong_alias (__pthread_setcanceltype, pthread_setcanceltype) /* The next two functions are similar to pthread_setcanceltype() but -- cgit v1.2.3