blob: 3f46dc098f2e5dc406d3603962e59206ec8f4733 (
plain)
1
2
3
4
5
6
7
8
9
|
extern "c" fn exit(u8) void;
export fn entry() void {
exit(0);
}
// error
// target=native-linux
//
// :1:8: error: dependency on libc must be explicitly specified in the build command
|