commit 1a93b72eeb26567e2e259df10528adf1e28b7f50
parent 30db2bcdb80eff069894da6cc430ea8d499a6373
Author: phoebos <ben@bvnf.space>
Date: Mon, 20 Sep 2021 00:48:38 +0100
true: add
Diffstat:
3 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -5,6 +5,7 @@ BINS = \
echo \
false \
tee \
+ true \
XCFLAGS = $(CFLAGS) -Wall -Wextra -Wpedantic -g
diff --git a/PROGRESS b/PROGRESS
@@ -38,7 +38,7 @@
[ ] time
[ ] touch
[ ] tr
-[ ] true
+[x] true
[ ] tty
[ ] uname
[ ] uudecode
diff --git a/true.c b/true.c
@@ -0,0 +1,4 @@
+int
+main(void) {
+ return 0;
+}