xref: /aosp_15_r20/external/musl/src/thread/cnd_destroy.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <threads.h>
2 
cnd_destroy(cnd_t * c)3 void cnd_destroy(cnd_t *c)
4 {
5 	/* For private cv this is a no-op */
6 }
7