blob: 79d33218037c944cb33bf2cc654002cbaa6a0861 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
procedure preal (tval, rval)
char tval[ARB]
real rval
begin
call eprintf ("%s %.4f\n")
call pargstr (tval)
call pargr (rval)
end
|