rework cancellation weak alias logic not to depend on archive order
[musl] / src / thread / pthread_testcancel.c
1 #include "pthread_impl.h"
2 #include "libc.h"
3
4 static void dummy()
5 {
6 }
7
8 weak_alias(dummy, __testcancel);
9
10 void pthread_testcancel()
11 {
12         __testcancel();
13 }