소스 검색
Fix typo in preprocessor macro
pull/416/head
Ahmad Fatoum
8 년 전
No known key found for this signature in database
GPG 키 ID: C3EAC3DE9321D59B
1개의 변경된 파일과
1개의 추가작업 그리고
1개의 파일을 삭제
-
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 |
|
|
|
|