From 64fca78a5b8410316d9ea604e66aa789850a8622 Mon Sep 17 00:00:00 2001 From: mmcc Date: Mon, 19 Oct 2015 14:43:46 +0000 Subject: [PATCH] Move stddef.h include from sh.h to the file that uses it. ok nicm@ --- bin/ksh/sh.h | 3 +-- bin/ksh/table.c | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h index 488b8bddd14..b95a8b7effa 100644 --- a/bin/ksh/sh.h +++ b/bin/ksh/sh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sh.h,v 1.43 2015/10/19 14:42:16 mmcc Exp $ */ +/* $OpenBSD: sh.h,v 1.44 2015/10/19 14:43:46 mmcc Exp $ */ /* * Public Domain Bourne/Korn shell @@ -14,7 +14,6 @@ #include #include #include -#include #include #include #include diff --git a/bin/ksh/table.c b/bin/ksh/table.c index 6f4d08b13ea..b0c508ba971 100644 --- a/bin/ksh/table.c +++ b/bin/ksh/table.c @@ -1,10 +1,11 @@ -/* $OpenBSD: table.c,v 1.21 2015/10/19 14:42:16 mmcc Exp $ */ +/* $OpenBSD: table.c,v 1.22 2015/10/19 14:43:46 mmcc Exp $ */ /* * dynamic hashed associative table for commands and variables */ #include +#include #include #include "sh.h" -- 2.20.1