diff options
| author | Jeffery Myers <[email protected]> | 2023-01-25 13:26:03 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-25 22:26:03 +0100 |
| commit | 63da7cdec6209b0a7b29cbdc12afe97c18be6aac (patch) | |
| tree | 8567baecd7cfc2a6ba5447d38818dbbfd2bc99d3 /src | |
| parent | 4adba0d3c3df93592346a592e7a2b79d5b76bd90 (diff) | |
| download | raylib-63da7cdec6209b0a7b29cbdc12afe97c18be6aac.tar.gz raylib-63da7cdec6209b0a7b29cbdc12afe97c18be6aac.zip | |
add include guards on config.h (#2888)
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index 17334b8a..f67ea3cb 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 |
