summaryrefslogtreecommitdiffstats
path: root/src/posix/sem_posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/posix/sem_posix.c')
-rw-r--r--src/posix/sem_posix.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/posix/sem_posix.c b/src/posix/sem_posix.c
index ea49db9..5b14e37 100644
--- a/src/posix/sem_posix.c
+++ b/src/posix/sem_posix.c
@@ -61,6 +61,9 @@ zix_sem_timed_wait(ZixSem* sem,
{
#if !USE_CLOCK_GETTIME || !USE_SEM_TIMEDWAIT
+ (void)sem;
+ (void)seconds;
+ (void)nanoseconds;
return ZIX_STATUS_NOT_SUPPORTED;
#else