Don't add extern "C" around thread wrappers
This commit is contained in:
parent
0b5548bc1b
commit
4e8633f7f3
8
thread.h
8
thread.h
|
@ -20,10 +20,6 @@
|
|||
#include "boolean.h"
|
||||
#include <stdint.h>
|
||||
|
||||
#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
|
||||
|
||||
|
|
Loading…
Reference in New Issue