Fix building under TinyC compiler

This commit is contained in:
Anton Kochkov 2015-11-05 01:12:54 +03:00
parent 43f233cd6a
commit 0872180ec2
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ typedef signed long int_64;
#else
typedef unsigned long uint_32;
typedef signed long int_32;
#if defined(LLONG_MAX) || defined(__GNUC__)
#if defined(LLONG_MAX) || defined(__GNUC__) || defined(__TINYC__)
typedef unsigned long long uint_64;
typedef signed long long int_64;
#else

View File

@ -8,7 +8,7 @@
*
****************************************************************************/
#if defined(__UNIX__) && defined(__GNUC__)
#if defined(__UNIX__) && ( defined(__GNUC__) || defined(__TINYC__) )
#include <sys/mman.h>
#endif