1
0

spring cleaning 1

This commit is contained in:
dtb
2023-12-31 10:46:23 -07:00
parent ea31d1221c
commit f501a77764
116 changed files with 4712 additions and 8 deletions

22
Retired/false/false.1 Normal file
View File

@@ -0,0 +1,22 @@
.TH FALSE 1
.SH NAME
false \(en do nothing, unsuccessfully
.SH DESCRIPTION
False does nothing regardless of operands or standard input.
False is always unsuccessful.
.SH STANDARDS
False functions as described in POSIX.1-2017.
.SH COPYRIGHT
Public domain.
.SH SEE ALSO
true(1)

1
Retired/false/false.c Normal file
View File

@@ -0,0 +1 @@
int main() { return 1; }

5
Retired/false/false.rs Normal file
View File

@@ -0,0 +1,5 @@
use std::process::ExitCode;
fn main() -> ExitCode {
ExitCode::from(1)
}