--- libcoro/coro.c 2005/03/03 17:20:31 1.13 +++ libcoro/coro.c 2005/03/21 14:17:44 1.14 @@ -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 @@ /* trampoline signal handler */ static void -trampoline(int sig) +trampoline (int sig) { if (setjmp (((coro_context *)new_coro)->env)) coro_init (); /* start it */