merge from dev

This commit is contained in:
daan 2019-11-13 17:52:20 -08:00
commit 17ade3fca5
5 changed files with 41 additions and 31 deletions

View file

@ -241,7 +241,7 @@ static inline void mi_atomic_write(volatile _Atomic(uintptr_t)* p, uintptr_t x)
#endif
#elif defined(__wasi__)
#include <sched.h>
static inline void mi_atomic_yield() {
static inline void mi_atomic_yield(void) {
sched_yield();
}
#else