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