From 2e2b84fb32f0b679b359ed5b7232765a17cf8420 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 May 2015 16:31:11 -0400 Subject: [PATCH] Some setups need _GNU_SOURCE to make LLONG_MAX available (thanks, Ozkan!). Fixes Bugzilla #2721. --- src/test/SDL_test_fuzzer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/SDL_test_fuzzer.c b/src/test/SDL_test_fuzzer.c index aff4a1c2ee322..9fad1785893c0 100644 --- a/src/test/SDL_test_fuzzer.c +++ b/src/test/SDL_test_fuzzer.c @@ -34,6 +34,7 @@ #define UINT32_MAX ~(Uint32)0 #define UINT64_MAX ~(Uint64)0 #else +#define _GNU_SOURCE #include #endif #include