Differences From Artifact [3f9b2155a1]:
- File src/main.c — part of check-in [942b2076c6] at 2020-11-07 13:25:35 on branch default-css-cleanups — Rename the "style_body_and_footer()" interface to "style_finish_page()" and add a more detailed header comment to the implementation. (user: drh size: 109850) [more...]
To Artifact [9169895a58]:
- File src/main.c — part of check-in [008fc9290c] at 2020-11-21 14:10:26 on branch trunk — Performance optimization in the internal printf() implementation. (user: drh size: 109879)
| ︙ | |||
671 672 673 674 675 676 677 678 679 680 681 682 683 684 | 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 | + |
#elif defined(SIGTRAP)
raise(SIGTRAP);
#endif
}
}
#endif
fossil_printf_selfcheck();
fossil_limit_memory(1);
if( sqlite3_libversion_number()<3034000 ){
fossil_panic("Unsuitable SQLite version %s, must be at least 3.34.0",
sqlite3_libversion());
}
sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0);
|
| ︙ |