mirror of https://github.com/bsnes-emu/bsnes.git
Added void to function signatures, in order to fix Clang's -Wstrict-prototypes
This commit is contained in:
parent
94acbce822
commit
d4a67ab8d5
4
libco.h
4
libco.h
|
@ -13,12 +13,12 @@ extern "C" {
|
|||
|
||||
typedef void* cothread_t;
|
||||
|
||||
cothread_t co_active();
|
||||
cothread_t co_active(void);
|
||||
cothread_t co_derive(void*, unsigned int, void (*)(void));
|
||||
cothread_t co_create(unsigned int, void (*)(void));
|
||||
void co_delete(cothread_t);
|
||||
void co_switch(cothread_t);
|
||||
int co_serializable();
|
||||
int co_serializable(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue