summaryrefslogtreecommitdiff
path: root/src/thread/mtx_timedlock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/mtx_timedlock.c')
-rw-r--r--src/thread/mtx_timedlock.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/thread/mtx_timedlock.c b/src/thread/mtx_timedlock.c
index d098053b..d22c8cf4 100644
--- a/src/thread/mtx_timedlock.c
+++ b/src/thread/mtx_timedlock.c
@@ -2,8 +2,6 @@
#include <pthread.h>
#include <errno.h>
-int __pthread_mutex_timedlock(pthread_mutex_t *restrict, const struct timespec *restrict);
-
int mtx_timedlock(mtx_t *restrict m, const struct timespec *restrict ts)
{
int ret = __pthread_mutex_timedlock((pthread_mutex_t *)m, ts);