mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-29 20:54:13 +01:00
move #include of <sys/errno.h> so that #defining KERNEL actually has an effect,
and then also add a declaration of ernno as an extern int, because we lose that due to having KERNEL defined while we include errno.h. Reviewed by: Geoff.
This commit is contained in:
parent
eab55510a6
commit
c2ace2b23e
@ -41,6 +41,10 @@ static char copyright[] =
|
||||
static char sccsid[] = "@(#)kdump.c 8.1 (Berkeley) 6/6/93";
|
||||
#endif /* not lint */
|
||||
|
||||
#define KERNEL
|
||||
extern int errno;
|
||||
#include <sys/errno.h>
|
||||
#undef KERNEL
|
||||
#include <sys/param.h>
|
||||
#include <sys/errno.h>
|
||||
#include <sys/time.h>
|
||||
@ -48,9 +52,6 @@ static char sccsid[] = "@(#)kdump.c 8.1 (Berkeley) 6/6/93";
|
||||
#include <sys/ktrace.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/ptrace.h>
|
||||
#define KERNEL
|
||||
#include <sys/errno.h>
|
||||
#undef KERNEL
|
||||
#include <vis.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
Loading…
Reference in New Issue
Block a user