mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 23:24:59 +00:00
Dummy implementation of the pthread library.
This is needed since libstdc++ uses pthread_once(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10360 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
8
runtime/GCCLibraries/libpthread/pthread.c
Normal file
8
runtime/GCCLibraries/libpthread/pthread.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <pthread.h>
|
||||
|
||||
int
|
||||
pthread_once (pthread_once_t * control, void (*func) (void))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user