Some setups need _GNU_SOURCE to make LLONG_MAX available (thanks, Ozkan!).

Fixes Bugzilla #2721.
This commit is contained in:
Ryan C. Gordon
2015-05-26 16:31:11 -04:00
parent 5efa181331
commit 043f718e2f

View File

@@ -34,6 +34,7 @@
#define UINT32_MAX ~(Uint32)0
#define UINT64_MAX ~(Uint64)0
#else
#define _GNU_SOURCE
#include <stdint.h>
#endif
#include <stdio.h>