mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-13 04:02:39 -04:00
3bb4d65b2f
Handle `-e` option in MachO linker allowing the user to set a custom entrypoint address.
8 lines
81 B
C
8 lines
81 B
C
#include <stdio.h>
|
|
|
|
char world[] = "world";
|
|
|
|
char* hello() {
|
|
return "Hello";
|
|
}
|