From 56c2c69ef8ce0f0ae1bf53d52036200e19cbc048 Mon Sep 17 00:00:00 2001 From: naddy Date: Sun, 18 Feb 2018 17:47:47 +0000 Subject: [PATCH] add include to silence compiler warning about a missing prototype for tolower() ok cheloha@ rob@ florian@ --- distrib/special/sysctl/sysctl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/distrib/special/sysctl/sysctl.c b/distrib/special/sysctl/sysctl.c index 151284524fe..8e613606dcf 100644 --- a/distrib/special/sysctl/sysctl.c +++ b/distrib/special/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.c,v 1.10 2018/02/10 05:59:06 florian Exp $ */ +/* $OpenBSD: sysctl.c,v 1.11 2018/02/18 17:47:47 naddy Exp $ */ /* * Copyright (c) 2009 Theo de Raadt @@ -24,10 +24,11 @@ #include -#include +#include #include #include #include +#include #define SOIIKEY_LEN 16 -- 2.20.1