From 84586e76e2bbd9bcc2fd2b14b1f1612d0c02e863 Mon Sep 17 00:00:00 2001 From: Alexei Sheplyakov Date: Sun, 21 Sep 2008 17:37:21 +0400 Subject: [PATCH] [BUGFIX] cln/config.h: fix include guard. --- include/cln/config.h.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/cln/config.h.in b/include/cln/config.h.in index f1c7c3d..511d534 100644 --- a/include/cln/config.h.in +++ b/include/cln/config.h.in @@ -1,4 +1,5 @@ -#ifdef _CL_CONFIG_PUBLIC_H +#ifndef _CL_CONFIG_PUBLIC_H +#define _CL_CONFIG_PUBLIC_H #include "cln/host_cpu.h" #include "cln/version.h"