From 7268a3802123736b11ca7257591556aec1d6d42c Mon Sep 17 00:00:00 2001 From: root Date: Mon, 21 Mar 2005 14:17:44 +0000 Subject: *** empty log message *** --- coro.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/coro.c b/coro.c index 4e4ad5c..1d306b8 100644 --- a/coro.c +++ b/coro.c @@ -48,7 +48,9 @@ #if CORO_SJLJ || CORO_LOOSE || CORO_LINUX || CORO_IRIX -#include +#if CORO_SJLJ +# include +#endif static volatile coro_func coro_init_func; static volatile void *coro_init_arg; @@ -74,7 +76,7 @@ static volatile int trampoline_count; /* trampoline signal handler */ static void -trampoline(int sig) +trampoline (int sig) { if (setjmp (((coro_context *)new_coro)->env)) coro_init (); /* start it */ -- cgit v1.2.3