As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
#include <stdlib.h>void a(void);void b();int main(){ a(); b(); return 0;}void a(void){ _sleep(200); return;}void b(){ int i; for(i=1;i<10;i++) { a(); }}