aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbsd-compat/NOTES4
-rw-r--r--regress/bin/parse.y4
-rw-r--r--regress/bin/ssl.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/openbsd-compat/NOTES b/openbsd-compat/NOTES
index 7eee0a6e..f01d5703 100644
--- a/openbsd-compat/NOTES
+++ b/openbsd-compat/NOTES
@@ -28,7 +28,7 @@ strlcpy.c portable openssh
strmode.c portable openssh
strsep.c portable openssh
strtonum.c portable openssh
-sys-queue.h portable openssh
-sys-tree.h portable openssh
+sys/queue.h portable openssh
+sys/tree.h portable openssh
vis.{c,h} portable openssh
xmalloc.{c,h} portable openssh
diff --git a/regress/bin/parse.y b/regress/bin/parse.y
index 3bfb955e..a42dfa5d 100644
--- a/regress/bin/parse.y
+++ b/regress/bin/parse.y
@@ -26,8 +26,8 @@
#include "includes.h"
#include <sys/types.h>
-#include "sys-queue.h"
-#include "sys-tree.h"
+#include <sys/queue.h>
+#include <sys/tree.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
diff --git a/regress/bin/ssl.c b/regress/bin/ssl.c
index cdd26ebb..54f0993d 100644
--- a/regress/bin/ssl.c
+++ b/regress/bin/ssl.c
@@ -18,8 +18,8 @@
*/
#include <sys/types.h>
-#include "sys-queue.h"
-#include "sys-tree.h"
+#include <sys/queue.h>
+#include <sys/tree.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>