diff options
Diffstat (limited to 'src/threads/mtx_init.c')
| -rw-r--r-- | src/threads/mtx_init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/threads/mtx_init.c b/src/threads/mtx_init.c index 5615736b..f161a0a1 100644 --- a/src/threads/mtx_init.c +++ b/src/threads/mtx_init.c @@ -13,3 +13,7 @@ int mtx_init(mtx_t *mtx, int type) } return pthread_mutex_init(mtx, &attr) == 0 ? thrd_success : thrd_error; } + +/* +STDC(201112) +*/ |
