2022-07-05 19:56:22 +02:00
|
|
|
#![feature(start)]
|
|
|
|
|
#![feature(unix_sigpipe)]
|
|
|
|
|
|
|
|
|
|
#[start]
|
2024-02-09 08:05:32 +01:00
|
|
|
#[unix_sigpipe = "sig_dfl"] //~ error: `unix_sigpipe` attribute can only be used on `fn main()`
|
2022-07-05 19:56:22 +02:00
|
|
|
fn custom_start(argc: isize, argv: *const *const u8) -> isize { 0 }
|