2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / sort-protos
blob493e9f08a8f585bb737c7a41821fa493cb8fcd4b
1 #!/bin/sh
2 # Sort the sys-protos.h file in its usual order.
3 # Invoke as `sort-protos sys-protos.h'.
5 input=$1
7 sed 's/\(.*[ \*]\)\([a-zA-Z0-9_][a-zA-Z0-9_]*\)[ ]*\(([^\*].*\)$/\2%\1%\3/' $input | sort -u | awk -F% '{printf "%-30.30s%s%s\n", $2, $1, $3}' > tmp.$input
9 mv -f tmp.$input $input