diff options
author | julian <julian@FreeBSD.org> | 2001-07-08 04:56:07 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2001-07-08 04:56:07 +0000 |
commit | 869029d5d7ecbdcabcad467c24dc102b3f110fde (patch) | |
tree | 3051a844ae5f32a737fef0e28618341231a0c500 /sys/ddb | |
parent | a4bd2ebd1e87443fcc729b7408b73c2fe20dc143 (diff) | |
download | FreeBSD-src-869029d5d7ecbdcabcad467c24dc102b3f110fde.zip FreeBSD-src-869029d5d7ecbdcabcad467c24dc102b3f110fde.tar.gz |
A set of changes to reduce the number of include files the kernel
takes from /usr/include. I cannot check them on alpha.. (will try beast)
Briefly looked at by: Warner Losh <imp@harmony.village.org>
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 2 | ||||
-rw-r--r-- | sys/ddb/db_trap.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 39378e9..64cad7e 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -45,7 +45,7 @@ #include <ddb/db_lex.h> #include <ddb/db_output.h> -#include <setjmp.h> +#include <machine/setjmp.h> /* * Exported global variables diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c index 2111957..4409007 100644 --- a/sys/ddb/db_trap.c +++ b/sys/ddb/db_trap.c @@ -35,11 +35,12 @@ * Trap entry point to kernel debugger. */ #include <sys/param.h> +#include <sys/systm.h> #include <ddb/ddb.h> #include <ddb/db_command.h> -#include <setjmp.h> +#include <machine/setjmp.h> extern jmp_buf db_jmpbuf; |