source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/thread/pthread_self.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: 242 bytes
Line 
1#include "pthread_impl.h"
2#include <threads.h>
3#include "libc.h"
4
5static pthread_t __pthread_self_internal()
6{
7 return __pthread_self();
8}
9
10weak_alias(__pthread_self_internal, pthread_self);
11weak_alias(__pthread_self_internal, thrd_current);
Note: See TracBrowser for help on using the repository browser.