diff options
-rw-r--r-- | raylib/src/external/glfw/src/posix_time.c | 4 |
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" |