summaryrefslogtreecommitdiffstats
path: root/src/sqlite/sqlite3.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-26 19:10:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-31 17:07:58 +0900
commitf387a03ddb3ded731605bf65675e4ef084d020e0 (patch)
tree34925e15b05caa3ceb09c81f69a69dc5dbb18ee4 /src/sqlite/sqlite3.h
parent23e20ce3708f457c05ebcd07a58d6330408994f8 (diff)
downloadklamav-f387a03d.tar.gz
klamav-f387a03d.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 1da72bf7afc74707d56ff04681a2e5044ba0beb2)
Diffstat (limited to 'src/sqlite/sqlite3.h')
-rw-r--r--src/sqlite/sqlite3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite/sqlite3.h b/src/sqlite/sqlite3.h
index 1a87067..6c5078d 100644
--- a/src/sqlite/sqlite3.h
+++ b/src/sqlite/sqlite3.h
@@ -78,7 +78,7 @@ typedef struct sqlite3 sqlite3;
** to do a typedef that for 64-bit integers that depends on what compiler
** is being used.
*/
-#if defined(_MSC_VER) || defined(__BORLANDC__)
+#if defined(_MSC_VER)
typedef __int64 sqlite_int64;
typedef unsigned __int64 sqlite_uint64;
#else