Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / rmtspc
blob431691d9e4bda8e5cdbf625ae9f7862868e5bf4b
1 #!/bin/sh
2 # remove trailing spaces from C code
3 #set -x
4 for i in $*; do
5 sed 's/[ ]*$//g' < $i > $i.tmp_$$ && mv $i.tmp_$$ $i
6 done