#!/bin/sh 
set glob

for x in *.c *.h ; do
cmp -s  $x ../galaxy-3.52/$x ||
(echo $x ;diff -w $x ../galaxy-3.52/$x | less)
done

