summaryrefslogtreecommitdiffstats
path: root/src/sqlite/sqliteInt.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-10-26 19:10:07 +0900
committerMichele Calgaro <[email protected]>2024-10-26 19:10:07 +0900
commit1da72bf7afc74707d56ff04681a2e5044ba0beb2 (patch)
treeddc877e23aecfad55d7eb079290db492488c0a53 /src/sqlite/sqliteInt.h
parent8106c13801f2c41145200baa68fa65f16597f0fd (diff)
downloadklamav-1da72bf7afc74707d56ff04681a2e5044ba0beb2.tar.gz
klamav-1da72bf7afc74707d56ff04681a2e5044ba0beb2.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/sqlite/sqliteInt.h')
-rw-r--r--src/sqlite/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite/sqliteInt.h b/src/sqlite/sqliteInt.h
index c4f723f..5edba2b 100644
--- a/src/sqlite/sqliteInt.h
+++ b/src/sqlite/sqliteInt.h
@@ -155,7 +155,7 @@
** cc '-DUINTPTR_TYPE=long long int' ...
*/
#ifndef UINT64_TYPE
-# if defined(_MSC_VER) || defined(__BORLANDC__)
+# if defined(_MSC_VER)
# define UINT64_TYPE unsigned __int64
# else
# define UINT64_TYPE unsigned long long int