diff options
author | 1996-11-27 12:07:55 +0000 | |
---|---|---|
committer | 1996-11-27 12:07:55 +0000 | |
commit | 1e699572e409e5cca1c47351cf442c1e283f04f4 (patch) | |
tree | 22b54e131c93f481d6079c7262e0991fa5dc7f27 | |
parent | don't define min,max if libkern.h included. (diff) | |
download | wireguard-openbsd-1e699572e409e5cca1c47351cf442c1e283f04f4.tar.xz wireguard-openbsd-1e699572e409e5cca1c47351cf442c1e283f04f4.zip |
include libkern.h prior to stand.h to not to collide m{in,ax} definitions.
-rw-r--r-- | sys/arch/alpha/stand/boot/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/alpha/stand/netboot/netboot.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c index a585b2b3ed6..706b614c072 100644 --- a/sys/arch/alpha/stand/boot/boot.c +++ b/sys/arch/alpha/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.6 1996/10/30 22:40:39 niklas Exp $ */ +/* $OpenBSD: boot.c,v 1.7 1996/11/27 12:07:55 mickey Exp $ */ /* $NetBSD: boot.c,v 1.8 1996/09/17 22:00:26 cgd Exp $ */ /* @@ -39,8 +39,8 @@ * @(#)boot.c 8.1 (Berkeley) 6/10/93 */ -#include <lib/libsa/stand.h> #include <lib/libkern/libkern.h> +#include <lib/libsa/stand.h> #include <sys/param.h> #include <sys/exec.h> diff --git a/sys/arch/alpha/stand/netboot/netboot.c b/sys/arch/alpha/stand/netboot/netboot.c index ce23e0918b1..eac243df8e5 100644 --- a/sys/arch/alpha/stand/netboot/netboot.c +++ b/sys/arch/alpha/stand/netboot/netboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: netboot.c,v 1.1 1996/10/30 22:40:57 niklas Exp $ */ +/* $OpenBSD: netboot.c,v 1.2 1996/11/27 12:07:55 mickey Exp $ */ /* $NetBSD: netboot.c,v 1.1 1996/09/18 20:03:12 cgd Exp $ */ /* @@ -39,8 +39,8 @@ * @(#)boot.c 8.1 (Berkeley) 6/10/93 */ -#include <lib/libsa/stand.h> #include <lib/libkern/libkern.h> +#include <lib/libsa/stand.h> #include <sys/param.h> #include <sys/exec.h> |