From 57f5a28fc4254ceb9ba48fc43353f839b620d507 Mon Sep 17 00:00:00 2001 Message-Id: <57f5a28fc4254ceb9ba48fc43353f839b620d507.1746825204.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 16 Jul 2013 15:33:48 +0100 Subject: [PATCH] chkpath.c, utils.c: Missing includes. Organization: Straylight/Edgeware From: Mark Wooding --- chkpath.c | 1 + utils.c | 1 + 2 files changed, 2 insertions(+) diff --git a/chkpath.c b/chkpath.c index 08c39c7..7dea761 100644 --- a/chkpath.c +++ b/chkpath.c @@ -43,6 +43,7 @@ #include #include "checkpath.h" +#include "utils.h" /*----- Main code ---------------------------------------------------------*/ diff --git a/utils.c b/utils.c index 883a219..6182d08 100644 --- a/utils.c +++ b/utils.c @@ -29,6 +29,7 @@ #include "config.h" #include +#include #include -- [mdw]