From 7c5d8946ff04588ee25050b61d72d7d33665fac9 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 28 Mar 2015 14:36:36 +0100 Subject: Include header file with prototypes in implementation module Functions implemented in gp_util.c have prototypes in header file gp_common.h, but it was not included. This patch prevent potential conflicts between ptototype and definition of function. Signed-off-by: Lukas Slebodnik Reviewed-by: Simo Sorce --- proxy/src/gp_util.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'proxy/src/gp_util.c') diff --git a/proxy/src/gp_util.c b/proxy/src/gp_util.c index 34f3024..7ad21e3 100644 --- a/proxy/src/gp_util.c +++ b/proxy/src/gp_util.c @@ -31,6 +31,8 @@ #include #include +#include "gp_common.h" + bool gp_same(const char *a, const char *b) { if ((a == b) || strcmp(a, b) == 0) { -- cgit