From 1a50644a9c4a435bc892f81d0dcdbf3161cc61ec Mon Sep 17 00:00:00 2001 From: Joursoir Date: Tue, 6 Sep 2022 09:27:00 +0300 Subject: xstd: include missing headers for function prototypes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the next warning: > no previous prototype for ‘xstrcat’ [-Wmissing-prototypes] --- src/xstd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xstd.c b/src/xstd.c index f791ab2..f06f639 100644 --- a/src/xstd.c +++ b/src/xstd.c @@ -19,6 +19,8 @@ #include #include +#include "xstd.h" + char *xstrcat(const char *first, const char *second, const char *delimiter) { -- cgit v1.2.3-18-g5258