mirror of
https://github.com/fluencelabs/musl
synced 2025-06-08 04:21:39 +00:00
7 lines
104 B
C
7 lines
104 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_spin_init(pthread_spinlock_t *s, int shared)
|
|
{
|
|
return *s = 0;
|
|
}
|