aboutsummaryrefslogtreecommitdiff
path: root/unix/boot/spp/rpp/rpprat/retcod.r
diff options
context:
space:
mode:
Diffstat (limited to 'unix/boot/spp/rpp/rpprat/retcod.r')
-rw-r--r--unix/boot/spp/rpp/rpprat/retcod.r30
1 files changed, 30 insertions, 0 deletions
diff --git a/unix/boot/spp/rpp/rpprat/retcod.r b/unix/boot/spp/rpp/rpprat/retcod.r
new file mode 100644
index 00000000..3490016d
--- /dev/null
+++ b/unix/boot/spp/rpp/rpprat/retcod.r
@@ -0,0 +1,30 @@
+#-h- retcod 580 local 12/01/80 15:54:35
+# retcod - generate code for return
+ include defs
+
+ subroutine retcod
+
+ character token (MAXTOK), t
+ character gnbtok
+ include COMMON_BLOCKS
+
+ t = gnbtok (token, MAXTOK)
+ if (t != NEWLINE & t != SEMICOL & t != RBRACE) {
+ call pbstr (token)
+ call outtab
+ call scopy (fcname, 1, token, 1)
+ call squash (token)
+ call outstr (token)
+ call outch (BLANK)
+ call outch (EQUALS)
+ call outch (BLANK)
+ call eatup
+ call outdon
+ }
+ else if (t == RBRACE)
+ call pbstr (token)
+ call outtab
+ call ogotos (retlab, NO)
+ xfer = YES
+ return
+ end