Commit 8fd190c0 authored by Thorsten Schöning's avatar Thorsten Schöning Committed by Daniel Stenberg
Browse files

win32: make recent Borland compilers use long long

parent ec9cbb17
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -488,7 +488,8 @@

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