mirror of
https://github.com/fluencelabs/musl
synced 2025-06-05 19:11:34 +00:00
7 lines
87 B
C
7 lines
87 B
C
|
#include <pthread.h>
|
||
|
|
||
|
int pthread_mutex_destroy(pthread_mutex_t *mutex)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|