mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
8 lines
170 B
C
Vendored
8 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;
|
|
|
|
}
|