Makefile, true(1), false(1): ported true and false back to C for simplicity and size

This commit is contained in:
2024-01-15 16:53:34 -07:00
parent c444198efc
commit 04923fb1ad
3 changed files with 7 additions and 14 deletions

View File

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

View File

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