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