master
1#include "pthread_impl.h"
2
3int pthread_mutex_consistent(pthread_mutex_t *m)
4{
5	/* cannot be a robust mutex, as they're entirely unsupported in WASI */
6	return EINVAL;
7
8}