From 4e8633f7f3937b75896f65aa90897780e3fd2f93 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 26 Jun 2014 02:59:14 +0200 Subject: [PATCH] Don't add extern "C" around thread wrappers --- thread.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/thread.h b/thread.h index e82841e02a..ef01140c52 100644 --- a/thread.h +++ b/thread.h @@ -20,10 +20,6 @@ #include "boolean.h" #include -#ifdef __cplusplus -extern "C" { -#endif - // Implements the bare minimum needed for RetroArch. :) typedef struct sthread sthread_t; @@ -92,9 +88,5 @@ static inline void retro_sleep(unsigned msec) } #endif -#ifdef __cplusplus -} -#endif - #endif