diff options
author | drh <drh@noemail.net> | 2004-06-29 11:08:19 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-06-29 11:08:19 +0000 |
commit | fd69dd6b3d137d075a7b57f3eceb1bbce3e6f17b (patch) | |
tree | 833362e12ca35d832bf04b5faf90b624e6b92502 /src/os_unix.c | |
parent | ef0715c20ad3bf7fd3a411639307ab07447eb8cf (diff) | |
download | sqlite-fd69dd6b3d137d075a7b57f3eceb1bbce3e6f17b.tar.gz sqlite-fd69dd6b3d137d075a7b57f3eceb1bbce3e6f17b.zip |
Comment out unused routine in os_unix.c. (CVS 1759)
FossilOrigin-Name: 20db8124ace5fbfa99035ae28e5c98f4c5fcde00
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
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 */ |