1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-27 08:52:26 +03:00

Comment out unused routine in os_unix.c. (CVS 1759)

FossilOrigin-Name: 20db8124ace5fbfa99035ae28e5c98f4c5fcde00
This commit is contained in:
drh
2004-06-29 11:08:19 +00:00
parent ef0715c20a
commit fd69dd6b3d
3 changed files with 9 additions and 7 deletions

View File

@@ -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 */