aboutsummaryrefslogtreecommitdiff
path: root/toys/true.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/true.c')
-rw-r--r--toys/true.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/toys/true.c b/toys/true.c
new file mode 100644
index 00000000..49ec11bf
--- /dev/null
+++ b/toys/true.c
@@ -0,0 +1,11 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * true.c - Return zero.
+ */
+
+#include "toys.h"
+
+int true_main(void)
+{
+ return 0;
+}