summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/sqlite
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-28 13:39:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-08 12:31:53 +0900
commitb3f74bb12ab86a90a05f7d48325b25c408d0b985 (patch)
tree9bfd26f8b7c6a3e7a1f2cce66019d41f51fb9cb8 /src/3rdparty/sqlite
parent64d2e7533f57a6ffd64827d83f93a994efafd8d0 (diff)
downloadtqt-b3f74bb12ab86a90a05f7d48325b25c408d0b985.tar.gz
tqt-b3f74bb12ab86a90a05f7d48325b25c408d0b985.zip
Drop Borland compiler specific code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 69e1261df646edf24612d7f953dac81182e7461b)
Diffstat (limited to 'src/3rdparty/sqlite')
-rw-r--r--src/3rdparty/sqlite/os.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/sqlite/os.h b/src/3rdparty/sqlite/os.h
index 72c75c763..5b12c21cd 100644
--- a/src/3rdparty/sqlite/os.h
+++ b/src/3rdparty/sqlite/os.h
@@ -72,7 +72,7 @@
# define OS_MAC 1
# define OS_WIN 0
# define OS_UNIX 0
-# elif defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__) || defined(__BORLANDC__)
+# elif defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__)
# define OS_MAC 0
# define OS_WIN 1
# define OS_UNIX 0
@@ -128,7 +128,7 @@
HANDLE h; /* Handle for accessing the file */
int locked; /* 0: unlocked, <0: write lock, >0: read lock */
};
-# if defined(_MSC_VER) || defined(__BORLANDC__)
+# if defined(_MSC_VER)
typedef __int64 off_t;
# else
# if !defined(_CYGWIN_TYPES_H)