From f2c9adb1df790affbb6dbb3001e8a182b48916a5 Mon Sep 17 00:00:00 2001 From: Joe Date: Sat, 25 Jun 2022 22:52:14 +0200 Subject: ifndef --- raylib/src/external/glfw/src/posix_time.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/raylib/src/external/glfw/src/posix_time.c b/raylib/src/external/glfw/src/posix_time.c index d6112e4..cd6ee19 100644 --- a/raylib/src/external/glfw/src/posix_time.c +++ b/raylib/src/external/glfw/src/posix_time.c @@ -27,7 +27,9 @@ // It is fine to use C99 in this file because it will not be built with VS //======================================================================== -// #define _POSIX_C_SOURCE 199309L +#ifndef __FreeBSD__ +#define _POSIX_C_SOURCE 199309L +#endif #include "internal.h" -- cgit v1.2.3