diff options
author | 2003-07-15 05:01:47 +0000 | |
---|---|---|
committer | 2003-07-15 05:01:47 +0000 | |
commit | 2d2096053ef5daac6116fb531a8d07a141bba83c (patch) | |
tree | a5f33b05f328f84ded7c8f223f487bd890d0bfc7 | |
parent | correct some debugging printfs (diff) | |
download | wireguard-openbsd-2d2096053ef5daac6116fb531a8d07a141bba83c.tar.xz wireguard-openbsd-2d2096053ef5daac6116fb531a8d07a141bba83c.zip |
i386 needs isavar.h, sparc64 doesn't (no one else uses this.. yet)
-rw-r--r-- | sys/dev/puc/com_puc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/puc/com_puc.c b/sys/dev/puc/com_puc.c index 0d8fb9b307e..e2ea9209e60 100644 --- a/sys/dev/puc/com_puc.c +++ b/sys/dev/puc/com_puc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_puc.c,v 1.5 2002/03/14 01:27:01 millert Exp $ */ +/* $OpenBSD: com_puc.c,v 1.6 2003/07/15 05:01:47 jason Exp $ */ /* * Copyright (c) 1997 - 1999, Jason Downs. All rights reserved. @@ -49,7 +49,9 @@ #include <dev/pci/pcivar.h> #include <dev/pci/pucvar.h> +#ifdef i386 #include <dev/isa/isavar.h> /* XXX */ +#endif #include "com.h" #ifdef i386 |