Merge pull request 'Fix implicit declaration of page_close on Linux' (#20) from fix/stage-source-check into dev
Dev — Build & local smoke test / build-smoke (push) Failing after 4m9s

This commit was merged in pull request #20.
This commit is contained in:
2026-05-09 22:54:05 +00:00
2 changed files with 7 additions and 3 deletions
+2 -2
View File
File diff suppressed because one or more lines are too long
+5 -1
View File
@@ -16,7 +16,11 @@ extern fn page_css() -> String
extern fn page_ga_script() -> String
extern fn page_schema() -> String
extern fn page_close() -> String
extern fn _page_close_impl() -> String
fn page_close() -> String {
return _page_close_impl()
}
// el-html vessel extern declarations (implementations in dist/elhtml_impl.c)
extern fn el_meta(name: String, content: String) -> String