On 2/8/17, Barry Smith <smith.bar...@gmail.com> wrote: > > I believe SQLite doesn't use the standard memory allocation routines, but > instead has its own routines.
SQLite has its on memory allocation routines (if you use the right compile-time and start-time options) but it uses system malloc()/realloc()/free() by default. There are internal wrappers routines for the memory allocator that dispatch requests to the appropriate implementation. Again, unless you take special actions to change it, memory allocation request are satisfied by malloc(). -- D. Richard Hipp d...@sqlite.org _______________________________________________ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users