From 8e5d84d3724afd9278ac759213d7ea6eb0982e54 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Wed, 18 Sep 2024 00:33:17 -0600 Subject: wip --- coroutine.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'coroutine.h') diff --git a/coroutine.h b/coroutine.h index ae52f22..273680d 100644 --- a/coroutine.h +++ b/coroutine.h @@ -23,8 +23,7 @@ void coroutine_main(void); /* inside of coroutines *******************************************************/ -bool _cr_begin(void); -#define cr_begin() do { if (!_cr_begin()) return; } while (0) +bool cr_begin(void); void cr_exit(void); void cr_yield(void); void cr_pause_and_yield(void); -- cgit v1.2.3-2-g168b