From c96fc3a382e38a4fd6d08393b932691b0f6cd5d4 Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 30 Jan 2014 21:50:01 +0000 Subject: [PATCH] Forgot to include these before --- util/strlcat.c | 1 + util/strlcpy.c | 1 + 2 files changed, 2 insertions(+) diff --git a/util/strlcat.c b/util/strlcat.c index a50c612..14bea97 100644 --- a/util/strlcat.c +++ b/util/strlcat.c @@ -1,6 +1,7 @@ /* Taken from OpenBSD */ #include #include +#include "../util.h" /* * Appends src to string dst of size siz (unlike strncat, siz is the diff --git a/util/strlcpy.c b/util/strlcpy.c index 3779c78..62fb7f6 100644 --- a/util/strlcpy.c +++ b/util/strlcpy.c @@ -1,6 +1,7 @@ /* Taken from OpenBSD */ #include #include +#include "../util.h" /* * Copy src to string dst of size siz. At most siz-1 characters