aboutsummaryrefslogtreecommitdiffstats
path: root/builtins/colon.c
diff options
context:
space:
mode:
Diffstat (limited to 'builtins/colon.c')
-rw-r--r--builtins/colon.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/builtins/colon.c b/builtins/colon.c
new file mode 100644
index 0000000..d1ca614
--- /dev/null
+++ b/builtins/colon.c
@@ -0,0 +1,24 @@
+/* colon.c, created from colon.def. */
+#line 22 "./colon.def"
+
+#line 34 "./colon.def"
+
+#line 43 "./colon.def"
+
+#line 52 "./colon.def"
+
+/* Return a successful result. */
+int
+colon_builtin (ignore)
+ char *ignore;
+{
+ return (0);
+}
+
+/* Return an unsuccessful result. */
+int
+false_builtin (ignore)
+ char *ignore;
+{
+ return (1);
+}