mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-14 02:06:16 +01:00
10 lines
208 B
Zig
10 lines
208 B
Zig
extern "c" fn exit(u8) void;
|
|
export fn entry() void {
|
|
exit(0);
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native-linux
|
|
//
|
|
// :1:8: error: dependency on libc must be explicitly specified in the build command
|