mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
9 lines
170 B
C
Vendored
9 lines
170 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int pthread_mutex_consistent(pthread_mutex_t *m)
|
|
{
|
|
/* cannot be a robust mutex, as they're entirely unsupported in WASI */
|
|
return EINVAL;
|
|
|
|
}
|