summaryrefslogtreecommitdiff
path: root/src/threads/cnd_destroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/cnd_destroy.c')
-rw-r--r--src/threads/cnd_destroy.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/threads/cnd_destroy.c b/src/threads/cnd_destroy.c
index 7fda89bf..ca723dac 100644
--- a/src/threads/cnd_destroy.c
+++ b/src/threads/cnd_destroy.c
@@ -5,3 +5,7 @@ void cnd_destroy(cnd_t *cond)
{
pthread_cond_destroy(cond);
}
+
+/*
+STDC(201112)
+*/