add C11 mutex functions

This commit is contained in:
Jens Gustedt
2014-09-06 22:07:22 -04:00
committed by Rich Felker
parent e16f70f452
commit 8b0472932c
6 changed files with 69 additions and 0 deletions

5
src/thread/mtx_destroy.c Normal file
View File

@ -0,0 +1,5 @@
#include <threads.h>
void mtx_destroy(mtx_t *mtx)
{
}