aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2017-12-10 21:11:04 +0100
committerAhmad Fatoum <ahmad@a3f.at>2017-12-10 21:11:04 +0100
commit203b2f65d11033e5ad42bdaeb6b09b83ff576b96 (patch)
treea22790d96c3f97627df76f4b04255bbff971812b /src
parent5ae2c0d15b349ce59425c319165505bda8298a6c (diff)
downloadraylib-203b2f65d11033e5ad42bdaeb6b09b83ff576b96.tar.gz
raylib-203b2f65d11033e5ad42bdaeb6b09b83ff576b96.zip
Fix typo in preprocessor macro
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index cf8f0258..ec7db978 100644
--- a/src/core.c
+++ b/src/core.c
@@ -89,7 +89,7 @@
#include "raylib.h"
-#if (defined(__linux__) || defined(PLATFORM_WEB)) && _POSIX_S_SOURCE < 199309L
+#if (defined(__linux__) || defined(PLATFORM_WEB)) && _POSIX_C_SOURCE < 199309L
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 199309L // Required for CLOCK_MONOTONIC if compiled with c99 without gnu ext.
#endif