math: fix two fma issues (only affects non-nearest rounding mode, x86)
[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 }