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/i386 | |
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/i386')
-rw-r--r-- | sys/i386/i386/db_interface.c | 2 | ||||
-rw-r--r-- | sys/i386/i386/i386-gdbstub.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/i386/db_interface.c b/sys/i386/i386/db_interface.c index 51fc835..a2e5018 100644 --- a/sys/i386/i386/db_interface.c +++ b/sys/i386/i386/db_interface.c @@ -53,7 +53,7 @@ #include <ddb/db_sym.h> #include <ddb/db_variables.h> -#include <setjmp.h> +#include <machine/setjmp.h> static jmp_buf *db_nofault = 0; extern jmp_buf db_jmpbuf; diff --git a/sys/i386/i386/i386-gdbstub.c b/sys/i386/i386/i386-gdbstub.c index d045adc..2e6464d 100644 --- a/sys/i386/i386/i386-gdbstub.c +++ b/sys/i386/i386/i386-gdbstub.c @@ -100,7 +100,7 @@ #include <ddb/ddb.h> -#include <setjmp.h> +#include <machine/setjmp.h> #include "opt_ddb.h" |