aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2004-06-29 11:08:19 +0000
committerdrh <drh@noemail.net>2004-06-29 11:08:19 +0000
commitfd69dd6b3d137d075a7b57f3eceb1bbce3e6f17b (patch)
tree833362e12ca35d832bf04b5faf90b624e6b92502 /src
parentef0715c20ad3bf7fd3a411639307ab07447eb8cf (diff)
downloadsqlite-fd69dd6b3d137d075a7b57f3eceb1bbce3e6f17b.tar.gz
sqlite-fd69dd6b3d137d075a7b57f3eceb1bbce3e6f17b.zip
Comment out unused routine in os_unix.c. (CVS 1759)
FossilOrigin-Name: 20db8124ace5fbfa99035ae28e5c98f4c5fcde00
Diffstat (limited to 'src')
-rw-r--r--src/os_unix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 8ce149870..d6dede920 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1207,6 +1207,7 @@ int sqlite3OsCurrentTime(double *prNow){
return 0;
}
+#if 0 /* NOT USED */
/*
** Find the time that the file was last modified. Write the
** modification time and date as a Julian Day number into *prNow and
@@ -1224,5 +1225,6 @@ int sqlite3OsFileModTime(OsFile *id, double *prNow){
}
return rc;
}
+#endif /* NOT USED */
#endif /* OS_UNIX */