aboutsummaryrefslogtreecommitdiff
path: root/pkg/system/rewind.x
blob: 9316b21297f55db07dbb0e8c4ed0c9fd04d56f66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

# REWIND -- Rewind a (previously allocated) magtape device.

procedure t_rewind()

char	device[SZ_FNAME]
bool	clgetb()
int	btoi()

begin
	call clgstr ("device", device, SZ_FNAME)
	call mtrewind (device, btoi(clgetb("initcache")))
end