touch *.c
unprotoize -c -I$SQLINC *.c 2>&1 | tee unprotoisam.out
err=`grep "exited with status 1" unprotoisam.out`
if [ "$err" != "" ]
then
	$0 terminated because of errors
	exit 1
fi
echo "INSERT Diskette  and Press Return"
read i
tar cvf /dev/fd0H1440 *.c
exit 0
