summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/raymath.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/raymath.h b/src/raymath.h
index 4cbf3f4d..b4e0336a 100644
--- a/src/raymath.h
+++ b/src/raymath.h
@@ -60,7 +60,11 @@
#endif
#ifdef RAYMATH_IMPLEMENTATION
- #define RMDEF __declspec(dllexport) extern inline // Provide external definition
+ #if defined(_WIN32)
+ #define RMDEF __declspec(dllexport) extern inline // Provide external definition
+ #else
+ #define RMDEF extern inline
+ #endif
#elif defined RAYMATH_HEADER_ONLY
#define RMDEF static inline // Functions may be inlined, no external out-of-line definition
#else