#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; }e='h' onchange='this.form.submit();'> Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2024-02-23Fixes edge middleware calling nested routes (#10215)Gravatar Matthew Phillips 2-1/+6
2024-02-23Adds an error message for non-string transition:name values (#10205)Gravatar Martin Trapp 2-0/+8
2024-02-23[ci] formatGravatar Furkan Erdem 1-1/+1
2024-02-23Fix(node): Custom headers are not present in responses from standalone Node s...Gravatar Furkan Erdem 8-0/+163