1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Fix os_common.h so that the code builds without -DSQLITE_MEMDEBUG. (CVS 3000)

FossilOrigin-Name: 06d6540026568ca69410354ca8d85da78970c94b
This commit is contained in:
drh
2006-01-23 14:05:18 +00:00
parent 7f7bc66ef2
commit c6dc0f7a79
3 changed files with 10 additions and 13 deletions

View File

@@ -183,9 +183,6 @@ void sqlite3GenericFree(void *p){
assert(p);
free(p);
}
#if 0 /* Never actually invoked */
int sqlite3GenericAllocationSize(void *p){
assert(0);
}
#endif
/* Never actually used, but needed for the linker */
int sqlite3GenericAllocationSize(void *p){ return 0; }
#endif