From 2f45ceb1dc6358a7550db34691793eca075a4c9f Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Mon, 11 May 2020 07:23:44 +0100 Subject: [PATCH] protect conf_post against double inclusion --- src/common/conf_post.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/conf_post.h b/src/common/conf_post.h index f67cab32..fc752434 100644 --- a/src/common/conf_post.h +++ b/src/common/conf_post.h @@ -1,3 +1,5 @@ +#ifndef _AUTOCONF_CONF_POST_H_INCLUDED +#define _AUTOCONF_CONF_POST_H_INCLUDED #ifdef _WIN32 @@ -58,3 +60,5 @@ typedef int ssize_t; #endif // _WIN32 #define PRETEND_USE(expr) ((void)(expr)) + +#endif /* INCLUDED */