diff options
author | deischen <deischen@FreeBSD.org> | 2002-02-17 17:19:14 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2002-02-17 17:19:14 +0000 |
commit | 030cf60aac08261b833d2e4394c992038f511e71 (patch) | |
tree | 6578b1fa42aa89b34e2e3fd6e50c6e5565725bcb | |
parent | c05ffa48b0af36908b4233c1496e27ceb5d756c8 (diff) | |
download | FreeBSD-src-030cf60aac08261b833d2e4394c992038f511e71.zip FreeBSD-src-030cf60aac08261b833d2e4394c992038f511e71.tar.gz |
Don't rely on <sys/signal.h> to include <sys/ucontext.h>.
-rw-r--r-- | gnu/usr.bin/binutils/gdb/freebsd-uthread.c | 1 | ||||
-rw-r--r-- | usr.bin/doscmd/doscmd.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gdb/freebsd-uthread.c b/gnu/usr.bin/binutils/gdb/freebsd-uthread.c index 1c1ea78..714d17c 100644 --- a/gnu/usr.bin/binutils/gdb/freebsd-uthread.c +++ b/gnu/usr.bin/binutils/gdb/freebsd-uthread.c @@ -41,6 +41,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "target.h" #include "inferior.h" #include <fcntl.h> +#include <ucontext.h> #include <unistd.h> #include <sys/stat.h> #include "gdbcore.h" diff --git a/usr.bin/doscmd/doscmd.h b/usr.bin/doscmd/doscmd.h index c1ed260..e545c29 100644 --- a/usr.bin/doscmd/doscmd.h +++ b/usr.bin/doscmd/doscmd.h @@ -48,6 +48,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <ucontext.h> #include <errno.h> #include <sys/signalvar.h> |