(libretro-common) Update

This commit is contained in:
twinaphex 2016-04-05 18:52:58 +02:00
parent 78426895db
commit db24cb1ec5

View File

@ -23,6 +23,10 @@
#ifndef __LIBRETRO_SDK_SEMAPHORE_H
#define __LIBRETRO_SDK_SEMAPHORE_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ssem ssem_t;
/**
@ -41,4 +45,8 @@ void ssem_wait(ssem_t *semaphore);
void ssem_signal(ssem_t *semaphore);
#ifdef __cplusplus
}
#endif
#endif /* __LIBRETRO_SDK_SEMAPHORE_H */