aboutsummaryrefslogtreecommitdiff
path: root/runtime/GCCLibraries/libpthread/pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/GCCLibraries/libpthread/pthread.c')
-rw-r--r--runtime/GCCLibraries/libpthread/pthread.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/GCCLibraries/libpthread/pthread.c b/runtime/GCCLibraries/libpthread/pthread.c
new file mode 100644
index 0000000000..cb5818ccc2
--- /dev/null
+++ b/runtime/GCCLibraries/libpthread/pthread.c
@@ -0,0 +1,8 @@
+#include <pthread.h>
+
+int
+pthread_once (pthread_once_t * control, void (*func) (void))
+{
+ return 0;
+}
+