diff toys/false.c @ 116:a0678c2ae9b8

Add true and false.
author Rob Landley <rob@landley.net>
date Mon, 30 Apr 2007 00:08:48 -0400
parents
children 25447caf1b4b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toys/false.c	Mon Apr 30 00:08:48 2007 -0400
@@ -0,0 +1,11 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * false.c - Return nonzero.
+ */
+
+#include "toys.h"
+
+int false_main(void)
+{
+	return 1;
+}