From 9b6efe540fd5d976589fc752bdacfd239303c0d5 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 23 Jun 2014 16:00:21 +0200 Subject: [PATCH] thread.h - ifndef for RARCH_CONSOLE no longer necessary --- thread.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/thread.h b/thread.h index 78f9fcfed3..d20d578fce 100644 --- a/thread.h +++ b/thread.h @@ -49,10 +49,8 @@ scond_t *scond_new(void); void scond_free(scond_t *cond); void scond_wait(scond_t *cond, slock_t *lock); -#ifndef RARCH_CONSOLE bool scond_wait_timeout(scond_t *cond, slock_t *lock, int64_t timeout_us); int scond_broadcast(scond_t *cond); -#endif void scond_signal(scond_t *cond); #ifndef RARCH_INTERNAL