commit 48a38a621ad838bbdf3c1bda81c1d4491248256d
parent f12031aa5542ae7598c05da851ed3ed4d23b58ed
Author: phoebos <ben@bvnf.space>
Date: Mon, 20 Sep 2021 00:45:18 +0100
false: add
Diffstat:
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -1,6 +1,6 @@
.POSIX:
-BINS = cat echo tee
+BINS = cat echo false tee
XCFLAGS = $(CFLAGS) -Wall -Wextra -Wpedantic -g
.PHONY: clean
diff --git a/PROGRESS b/PROGRESS
@@ -13,7 +13,7 @@
[ ] dirname
[ ] du
[x] echo
-[ ] false
+[x] false
[ ] find
[ ] grep
[ ] head
diff --git a/false.c b/false.c
@@ -0,0 +1,4 @@
+int
+main(void) {
+ return 1;
+}