xref: /netbsd-src/external/bsd/am-utils/dist/m4/rmtspc (revision a53f50b9b44dc9467ccc9c464999b1d1c509cb0c)
1#!/bin/sh
2# remove trailing spaces from C code
3#set -x
4for i in $*; do
5    sed 's/[	 ]*$//g' < $i > $i.tmp_$$ && mv $i.tmp_$$ $i
6done
7