use weak aliases rather than function pointers to simplify some code
[musl] / src / thread / pthread_testcancel.c
1 #include "pthread_impl.h"
2
3 void __testcancel(void);
4
5 void pthread_testcancel()
6 {
7         __testcancel();
8 }