From a91f61262eec6334f4ab1d0524924083561e88df Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 10 Oct 2021 23:24:05 +0200 Subject: [PATCH] Review RLAPI to avoid warnings --- src/rlgl.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/rlgl.h b/src/rlgl.h index 47f631708..bf44844d3 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -105,11 +105,6 @@ #define RLGL_VERSION "4.0" -// Function specifiers definition -#ifndef RLAPI - #define RLAPI // Functions defined as 'extern' by default (implicit specifiers) -#endif - // Function specifiers in case library is build/used as a shared library (Windows) // NOTE: Microsoft specifiers to tell compiler that symbols are imported/exported from a .dll #if defined(_WIN32) @@ -120,6 +115,11 @@ #endif #endif +// Function specifiers definition +#ifndef RLAPI + #define RLAPI // Functions defined as 'extern' by default (implicit specifiers) +#endif + // Support TRACELOG macros #ifndef TRACELOG #define TRACELOG(level, ...) (void)0