aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-06-25 22:52:14 +0200
committerJoe <bousset.rudy@gmail.com>2022-06-25 22:52:14 +0200
commitf2c9adb1df790affbb6dbb3001e8a182b48916a5 (patch)
treebb92d57421adf6dc023ce2e10e52dc9a22209ca9
parentBSD compat (diff)
downloadyabs-f2c9adb1df790affbb6dbb3001e8a182b48916a5.tar.gz
yabs-f2c9adb1df790affbb6dbb3001e8a182b48916a5.tar.bz2
yabs-f2c9adb1df790affbb6dbb3001e8a182b48916a5.tar.xz
yabs-f2c9adb1df790affbb6dbb3001e8a182b48916a5.tar.zst
yabs-f2c9adb1df790affbb6dbb3001e8a182b48916a5.zip
ifndef
-rw-r--r--raylib/src/external/glfw/src/posix_time.c4
1 files changed, 3 insertions, 1 deletions
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"