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

Fixes Bugzilla #2721.

--HG--
extra : histedit_source : e9fc595fbb091ace7be1350afc76e77b81ed024d
This commit is contained in:
Ryan C. Gordon 2015-05-26 16:31:11 -04:00
parent 2102ee2bb9
commit b9ea3c02d2

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>