From 6a775dc9e735c89900bc501b3bd43e3fb24e0e39 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Tue, 10 Jan 2006 03:30:10 +0000
Subject: [PATCH] Disable 64-bit (long long) support for Borland builds for the
 time-being (Borland doesn't have strto[u]ll).

---
 src/xpdev/xpprintf.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xpdev/xpprintf.h b/src/xpdev/xpprintf.h
index d8a81414e1..93ce445915 100644
--- a/src/xpdev/xpprintf.h
+++ b/src/xpdev/xpprintf.h
@@ -14,7 +14,7 @@
 #define XP_PRINTF_TYPE_USHORT		XP_PRINTF_TYPE_UINT
 #define XP_PRINTF_TYPE_LONG			3
 #define XP_PRINTF_TYPE_ULONG		4
-#if !defined(_MSC_VER)
+#if !defined(_MSC_VER) && !defined(__BORLANDC__)
 	#define XP_PRINTF_TYPE_LONGLONG		5
 	#define XP_PRINTF_TYPE_ULONGLONG	6
 #endif
-- 
GitLab