source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/thread/pthread_testcancel.c@ 337

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

ASP3版ECNLを追加

  • 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.