#!/bin/sh

for i in *.c *.h; do

	if [ -f $i.org ]; then
		cp $i.org $i
	fi

done
