1#!/bin/sh
2# copy current state of some files into the designated directory
3
4files='tcl.decls tclDecls.h tclIO.c tclStubInit.c tclStubs.c'
5
6for f in $files
7do
8	cp $1/$f.orig $f
9done
10exit
11