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