diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-11 19:05:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-11 19:05:29 +0000 |
commit | 4fe3a88760c88a72dc73d88e215abe7990a48e4d (patch) | |
tree | 8e21430ea930e1927df23e0cc29020e288f95e30 /usr.bin/false/false.c | |
parent | 5acba909cbec59ebe293c43103e4094009bd73f3 (diff) |
Switch back to C versions of true/false. I do not accept any of the
arguments made 20 years ago. A small elf binary is smaller and faster
than a large elf binary running a script. Noone cares about the file
sizes on disk.
ok semarie millert aja
Diffstat (limited to 'usr.bin/false/false.c')
-rw-r--r-- | usr.bin/false/false.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/usr.bin/false/false.c b/usr.bin/false/false.c new file mode 100644 index 00000000000..240f4bd42dd --- /dev/null +++ b/usr.bin/false/false.c @@ -0,0 +1,9 @@ +/* $OpenBSD: false.c,v 1.1 2015/11/11 19:05:28 deraadt Exp $ */ + +/* Public domain - Theo de Raadt */ + +int +main(int argc, char *argv[]) +{ + return (1); +} |