diff options
Diffstat (limited to 'src/threads/mtx_lock.c')
-rw-r--r-- | src/threads/mtx_lock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/threads/mtx_lock.c b/src/threads/mtx_lock.c index da97db79..85b80395 100644 --- a/src/threads/mtx_lock.c +++ b/src/threads/mtx_lock.c @@ -9,6 +9,8 @@ int mtx_lock(mtx_t *mtx) return pthread_mutex_lock(mtx); } +__check_1(int, 0, mtx_lock, mtx_t *) + /* STDC(201112) */ |