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
6rm    $1/standard.patch
7touch $1/standard.patch
8
9for f in $files
10do
11    diff -c $1/$f.orig $1/$f >> standard.patch
12done
13exit
14