Skip to content

Commit

Permalink
win32: make recent Borland compilers use long long
Browse files Browse the repository at this point in the history
  • Loading branch information
ams-tschoening authored and bagder committed Sep 29, 2015
1 parent ec9cbb1 commit 8fd190c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/config-win32.h
Expand Up @@ -487,8 +487,9 @@
#endif

/* Define if the compiler supports the 'long long' data type. */
#if defined(__MINGW32__) || defined(__WATCOMC__) || \
(defined(_MSC_VER) && (_MSC_VER >= 1310))
#if defined(__MINGW32__) || defined(__WATCOMC__) || \
(defined(_MSC_VER) && (_MSC_VER >= 1310)) || \
(defined(__BORLANDC__) && (__BORLANDC__ >= 0x561))
#define HAVE_LONGLONG 1
#endif

Expand Down

0 comments on commit 8fd190c

Please sign in to comment.