mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
22 lines
617 B
C
22 lines
617 B
C
#define STBI_ASSERT(x)
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
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;
|
|
} |