source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/thread/pthread_testcancel.c@ 400

Last change on this file since 400 was 400, 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: 208 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
15weak_alias(__pthread_testcancel, pthread_testcancel);
Note: See TracBrowser for help on using the repository browser.