- (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
   have it (used in ssh-keyscan).
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index 0b2ed40..26ea59e 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -10,7 +10,11 @@
 #include "includes.h"
 RCSID("$OpenBSD: ssh-keyscan.c,v 1.1 2000/12/04 19:24:02 markus Exp $");
 
+#ifdef HAVE_SYS_QUEUE_H
 #include <sys/queue.h>
+#else
+#include "bsd-queue.h"
+#endif
 #include <err.h>
 #include <errno.h>