source: azure_iot_hub/trunk/musl-1.1.18/src/thread/pthread_testcancel.c@ 389

Last change on this file since 389 was 389, checked in by coas-nagasima, 5 years ago

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 291 bytes
Line 
1#include "pthread_impl.h"
2#include "libc.h"
3
4static void dummy()
5{
6}
7
8weak_alias(dummy, __testcancel);
9
10void __pthread_testcancel()
11{
12 __testcancel();
13}
14
15#ifndef __c2__
16weak_alias(__pthread_testcancel, pthread_testcancel);
17#else
18void pthread_testcancel()
19{
20 __pthread_testcancel();
21}
22#endif
Note: See TracBrowser for help on using the repository browser.