From a11aea2333bd1c0e96f4ca0ebf51d73ef1268b15 Mon Sep 17 00:00:00 2001 From: millert Date: Mon, 30 Oct 2023 16:14:51 +0000 Subject: [PATCH] Include strings.h for the strncasecmp() prototype. From upstream. --- usr.bin/awk/lib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/awk/lib.c b/usr.bin/awk/lib.c index 9534c324690..ba5acf15214 100644 --- a/usr.bin/awk/lib.c +++ b/usr.bin/awk/lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lib.c,v 1.52 2023/10/06 22:29:24 millert Exp $ */ +/* $OpenBSD: lib.c,v 1.53 2023/10/30 16:14:51 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved @@ -26,6 +26,7 @@ THIS SOFTWARE. #define DEBUG #include #include +#include #include #include #include -- 2.20.1