summaryrefslogtreecommitdiff
path: root/src/op/else.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/op/else.c')
-rw-r--r--src/op/else.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/op/else.c b/src/op/else.c
new file mode 100644
index 0000000..4e4dcb6
--- /dev/null
+++ b/src/op/else.c
@@ -0,0 +1,12 @@
+#include <ops.h>
+#include <interp.h>
+
+int op_else(struct interp *const i)
+{
+ return -1;
+}
+
+int check_else(FILE *const f)
+{
+ return 0;
+}