1
0
Fork 0

false(1): rewrite from C to Rust

This commit is contained in:
dtb 2023-12-25 17:05:19 -07:00
parent 47f673ef45
commit 324328d2cc
Signed by untrusted user: trinity
GPG Key ID: 31FF85CCB6DC7641
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,5 @@
/*
* Copyright (c) 2023 DTB <trinity@trinity.moe>
* Copyright (c) 2023 Emma Tebibyte <emma@tebibyte.media>
* SPDX-License-Identifier: CC0
*
@ -6,4 +7,8 @@
* <http://creativecommons.org/publicdomain/zero/1.0>.
*/
int main() { return 1; }
use std::process::ExitCode;
fn main() -> ExitCode {
ExitCode::from(1)
}