diff options
author | Vasu Nori <vnori@google.com> | 2010-03-11 12:23:17 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-03-11 12:23:17 -0800 |
commit | 87ba5df965e08e3ad5cd3ad4ab3005cbc430429f (patch) | |
tree | 7ac7454e7fd493e604a40b826bdb15c703e6ee56 /dist/sqlite3.c | |
parent | 71da3616ee4fbd61b6f966b8c1bf3283d8020c1b (diff) | |
parent | 1ce7bcafdf93c120f644c6dd01ffac098dfe327e (diff) |
Merge "remove dead code"
Diffstat (limited to 'dist/sqlite3.c')
-rw-r--r-- | dist/sqlite3.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/dist/sqlite3.c b/dist/sqlite3.c index 11c954b..e324f8f 100644 --- a/dist/sqlite3.c +++ b/dist/sqlite3.c @@ -111116,14 +111116,4 @@ SQLITE_API int sqlite3_set_transaction_default_immediate(sqlite3* db, int immedi sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } -SQLITE_API void sqlite3_get_pager_stats(sqlite3_int64 * totalBytesOut, - sqlite3_int64 * referencedBytesOut, - sqlite3_int64 * dbBytesOut, - int * numPagersOut){ - // TODO - *totalBytesOut = 0; - *referencedBytesOut = 0; - *dbBytesOut = 0; - *numPagersOut = 0; -} // End Android Add |