Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
thread
cnd_destroy.c
pretty
plain
permalink
blame
history
•
6 lines
•
91 B
1
#include <threads.h>
2
3
void cnd_destroy(cnd_t *c)
4
{
5
	/* For private cv this is a no-op */
6
}