aboutsummaryrefslogtreecommitdiff
path: root/sys/clio/clgpsetr.x
blob: 598a2c42b217dea0782fd12f9d532ab8916fab91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	"clpset.h"

# CLGPSETR -- Get the real value of a pset parameter.

real procedure clgpsetr (pp, parname)

pointer	pp			# pset descriptor
char	parname[ARB]		# parameter name

pointer	clpset_parname()
real	clgetr()

begin
	return (clgetr (PARNAME(pp,parname)))
end