#define STBI_ASSERT(x) #include #include extern void console_error(uint64_t slice); extern void console_log(uint64_t slice); extern void console_warn(uint64_t slice); extern void console_info(uint64_t slice); // Zig compiles C code with -fstack-protector-strong which requires the // following two symbols which don't seem to be provided by the emscripten // toolchain(?) uintptr_t __stack_chk_guard = 0xABBABABA; _Noreturn void __stack_chk_fail(void) { abort(); }; // emsc_main() is the Zig entry function in pacman.zig extern void emsc_main(void); int main() { emsc_main(); return 0; }'/ansg191/astro/'>astro
Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2023-01-03[ci] formatGravatar matthewp 2-2/+2
2023-01-03Markdown and MDX configuration rework (#5684)Gravatar Ben Holmes 14-1665/+2188
2023-01-03[ci] formatGravatar bholmesdev 4-46/+45
2023-01-03Change frontmatter injection ordering (#5687)Gravatar Ben Holmes 29-204/+234
2023-01-03Cleanup internal breaking changes (#5724)Gravatar Bjorn Lu 4-33/+7
2023-01-03Fix astro-embed peerDep issue (#5731)Gravatar Matthew Phillips 2-2/+2
2023-01-03Fix missing ts flag on main (#5730)Gravatar Matthew Phillips 1-0/+1
2023-01-03[ci] formatGravatar matthewp 3-10/+2
2023-01-03Remove MDX Fragment hack (#5716)Gravatar Bjorn Lu 2-9/+6
2023-01-03Remove deprecated APIs (#5707)Gravatar Bjorn Lu 18-217/+87
2023-01-03Unflag experimental features (#5728)Gravatar Nate Moore 13-122/+26
2023-01-03Upgrade to Vite 4 (#5685)Gravatar Bjorn Lu 21-3459/+337
2023-01-03[ci] update lockfile (#5686)Gravatar Fred K. Bot 4-3215/+2864