aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/selector/tcsclose.x
blob: 3aa934ea1dc96ef6b2a5ebe2d829c582ea912479 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# TCS_CLOSE -- Free memory associated with column selectors

procedure tcs_close (descrip, ndescrip)

pointer	descrip[ARB]	# i: column selectors
int	ndescrip	# i: number of descriptors
#--
int	id

begin
	do id = 1, ndescrip
	    call mfree (descrip[id], TY_INT)

end