aboutsummaryrefslogtreecommitdiff
path: root/sys/fmio/fmrename.x
blob: e522153610b3645d298b7c180dc75f128214dde3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

# FM_RENAME -- Rename (or move) a datafile.

procedure fm_rename (old, new)

char	old[ARB], new[ARB]	#I old, new datafile names

begin
	call rename (old, new)
end