From 63da7cdec6209b0a7b29cbdc12afe97c18be6aac Mon Sep 17 00:00:00 2001 From: Jeffery Myers <jeffm2501@gmail.com> Date: Wed, 25 Jan 2023 13:26:03 -0800 Subject: [PATCH] add include guards on config.h (#2888) --- src/config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config.h b/src/config.h index 17334b8ac..f67ea3cb0 100644 --- a/src/config.h +++ b/src/config.h @@ -24,7 +24,8 @@ * 3. This notice may not be removed or altered from any source distribution. * **********************************************************************************************/ - +#ifndef CONFIG_H +#define CONFIG_H //------------------------------------------------------------------------------------ // Module selection - Some modules could be avoided // Mandatory modules: rcore, rlgl, utils @@ -236,3 +237,5 @@ // utils: Configuration values //------------------------------------------------------------------------------------ #define MAX_TRACELOG_MSG_LENGTH 128 // Max length of one trace-log message + +#endif // CONFIG_H