Revert "raymath.h: Use C99 inline semantics"

This reverts commit 6ffc8cb799.
and commit e4d7bbec1e.
which I pushed by mistake...
This commit is contained in:
Ahmad Fatoum 2018-02-24 15:38:54 +01:00
parent c9043b5a87
commit a5881fb9cc
No known key found for this signature in database
GPG key ID: C3EAC3DE9321D59B
4 changed files with 143 additions and 58 deletions

View file

@ -98,12 +98,13 @@
#define _POSIX_C_SOURCE 199309L // Required for CLOCK_MONOTONIC if compiled with c99 without gnu ext.
#endif
#define RAYMATH_IMPLEMENTATION // Define external out-of-line implementation of raymath here
#include "raymath.h" // Required for: Vector3 and Matrix functions
#include "rlgl.h" // raylib OpenGL abstraction layer to OpenGL 1.1, 3.3+ or ES2
#include "utils.h" // Required for: fopen() Android mapping
#define RAYMATH_IMPLEMENTATION // Use raymath as a header-only library (includes implementation)
#define RAYMATH_EXTERN_INLINE // Compile raymath functions as static inline (remember, it's a compiler hint)
#include "raymath.h" // Required for: Vector3 and Matrix functions
#if defined(SUPPORT_GESTURES_SYSTEM)
#define GESTURES_IMPLEMENTATION
#include "gestures.h" // Gestures detection functionality