diff options
Diffstat (limited to 'src/threads/mtx_unlock.c')
| -rw-r--r-- | src/threads/mtx_unlock.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/threads/mtx_unlock.c b/src/threads/mtx_unlock.c index 509a3f86..d7055077 100644 --- a/src/threads/mtx_unlock.c +++ b/src/threads/mtx_unlock.c @@ -5,3 +5,7 @@ int mtx_unlock(mtx_t *mtx) { return pthread_mutex_unlock(mtx) == 0 ? thrd_success : thrd_error; } + +/* +STDC(201112) +*/ |
