aboutsummaryrefslogtreecommitdiff
path: root/src/os.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os.c')
-rw-r--r--src/os.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/os.c b/src/os.c
index 8ca0185d9..c1b551097 100644
--- a/src/os.c
+++ b/src/os.c
@@ -88,17 +88,6 @@ int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){
}
#endif
-#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)
- /* These methods are currently only used for testing and debugging. */
- int sqlite3OsFileHandle(sqlite3_file *id){
- /* return id->pMethods->xFileHandle(id); */
- return 0;
- }
- int sqlite3OsLockState(sqlite3_file *id){
- return id->pMethods->xLockState(id);
- }
-#endif
-
/*
** The next group of routines are convenience wrappers around the
** VFS methods.