From: Markus Armbruster Date: Sun, 3 Jan 2021 07:37:52 +0000 (+0100) Subject: lwp: Include signal.h instead of ucontext.h where possible X-Git-Tag: v4.4.1~41 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=52e540d62a6ddda0cecd72277229a26a709d15fe lwp: Include signal.h instead of ucontext.h where possible Signed-off-by: Markus Armbruster --- diff --git a/src/lib/lwp/arch.c b/src/lib/lwp/arch.c index 3249fb037..7afc3acd7 100644 --- a/src/lib/lwp/arch.c +++ b/src/lib/lwp/arch.c @@ -30,12 +30,13 @@ * Known contributors to this file: * Dave Pare, 1994 * Steve McClure, 1994-2000 - * Markus Armbruster, 2004-2008 + * Markus Armbruster, 2004-2021 */ #include #include +#include #include "lwpint.h" /* diff --git a/src/lib/lwp/lwpint.h b/src/lib/lwp/lwpint.h index a10734033..d46c55e85 100644 --- a/src/lib/lwp/lwpint.h +++ b/src/lib/lwp/lwpint.h @@ -28,14 +28,14 @@ * lwpint.h: lwp internal structures * * Known contributors to this file: - * Markus Armbruster, 2004-2020 + * Markus Armbruster, 2004-2021 */ #ifndef LWPINT_H #define LWPINT_H #include -#include +#include #include "misc.h"