summaryrefslogtreecommitdiff
path: root/source/kit/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/kit/mutex.h')
-rw-r--r--source/kit/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/kit/mutex.h b/source/kit/mutex.h
index 919d92a..ada3a5f 100644
--- a/source/kit/mutex.h
+++ b/source/kit/mutex.h
@@ -41,7 +41,7 @@ void mtx_destroy(mtx_t *mtx_);
int mtx_init(mtx_t *mtx_, int);
int mtx_lock(mtx_t *mtx_);
int mtx_timedlock(mtx_t *__restrict mtx_,
- const struct timespec *__restrict);
+ struct timespec const *__restrict);
int mtx_trylock(mtx_t *mtx_);
int mtx_unlock(mtx_t *mtx_);