Merge pull request #18 from namandixit/clang-signature-warning

Fix Clang's -Wstrict-prototypes warning
This commit is contained in:
Kawa 2020-06-25 17:43:14 +02:00 committed by GitHub
commit 5bb5e34aa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
}