blob: e20e7df03afdbd433eabfc2cedd66a932945d1f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include defs
# OGOTOS - Output "goto n", unconditionally.
subroutine ogotos (n, error_check)
integer n, error_check
include COMMON_BLOCKS
string sgoto "goto "
call outtab
call outstr (sgoto)
call outnum (n)
if (error_check == YES)
call outdwe
else
call outdon
end
|