aboutsummaryrefslogtreecommitdiff
path: root/sys/clio/clppseti.x
blob: 6cb06daf85bd8df42a6c35208eeedd71c16f12f4 (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"

# CLPPSETI -- Set the integer value of a pset parameter.

procedure clppseti (pp, parname, ival)

pointer	pp			# pset descriptor
char	parname[ARB]		# parameter name
int	ival			# new value of parameter

pointer	clpset_parname()

begin
	call clputi (PARNAME(pp,parname), ival)
end