Index: fusl/src/thread/pthread_testcancel.c |
diff --git a/fusl/src/thread/pthread_testcancel.c b/fusl/src/thread/pthread_testcancel.c |
index ee48e6d8af6dcf909a9b5b40e1f9253035c0a3d0..cc92b281e76569d7634a84113fe8231a9aa41594 100644 |
--- a/fusl/src/thread/pthread_testcancel.c |
+++ b/fusl/src/thread/pthread_testcancel.c |
@@ -1,15 +1,12 @@ |
#include "pthread_impl.h" |
#include "libc.h" |
-static void dummy() |
-{ |
-} |
+static void dummy() {} |
weak_alias(dummy, __testcancel); |
-void __pthread_testcancel() |
-{ |
- __testcancel(); |
+void __pthread_testcancel() { |
+ __testcancel(); |
} |
weak_alias(__pthread_testcancel, pthread_testcancel); |