diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 23:23:22 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 23:23:22 -0500 |
| commit | 9222a64f2e86db0d94b977d79c274d1d07003b0a (patch) | |
| tree | 0d3952b0a30ab85c3fc112d1d10e2391c1be4256 /src/threads/mtx_unlock.c | |
| parent | 2a381114dae8832b6ce9459e769533164bb6e4ec (diff) | |
update to 1:1 checked functions
Diffstat (limited to 'src/threads/mtx_unlock.c')
| -rw-r--r-- | src/threads/mtx_unlock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/threads/mtx_unlock.c b/src/threads/mtx_unlock.c index 0b2b5fec..fe789420 100644 --- a/src/threads/mtx_unlock.c +++ b/src/threads/mtx_unlock.c @@ -9,6 +9,8 @@ int mtx_unlock(mtx_t *mtx) return pthread_mutex_unlock(mtx) == 0 ? thrd_success : thrd_error; } +__check_1(int, 0, mtx_unlock, mtx_t *) + /* STDC(201112) */ |
