aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/wasi/thread-stub/pthread_cond_init.c
blob: c32903b6c7154c712a74a1e8054b16c19d2dea59 (plain)
1
2
3
4
5
6
#include "pthread_impl.h"

int pthread_cond_init(pthread_cond_t *restrict c, const pthread_condattr_t *restrict a)
{
	return 0;
}