From 3627bb960a4df7e13dbf82fc8ace0e27ed2b072c Mon Sep 17 00:00:00 2001 From: Lorenz Junglas Date: Mon, 1 Feb 2021 03:59:15 -0800 Subject: [PATCH] Move include guard endif to end of file (#121) Resolves #120 --- src/raygui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raygui.h b/src/raygui.h index 64a3dd7..f25d345 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -499,8 +499,6 @@ RAYGUIDEF void GuiClearIconPixel(int iconId, int x, int y); // Clear icon pi RAYGUIDEF bool GuiCheckIconPixel(int iconId, int x, int y); // Check icon pixel value #endif -#endif // RAYGUI_H - /*********************************************************************************** * @@ -3721,3 +3719,5 @@ static const char *CodepointToUtf8(int codepoint, int *byteLength) #if defined(__cplusplus) } // Prevents name mangling of functions #endif + +#endif // RAYGUI_H