diff options
author | YamaArashi <shadow962@live.com> | 2016-02-14 20:25:36 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-14 20:25:36 -0800 |
commit | d480dd4c665ea845fe99101e76b073197ccb9699 (patch) | |
tree | 3d48379cfc3446db40dbceb00dea9d3e6306d180 /gcc/sort-protos | |
parent | 69d04ba246cd5716eb4efd0ad8bc761a2d3ae7ab (diff) |
remove more unused files
Diffstat (limited to 'gcc/sort-protos')
-rwxr-xr-x | gcc/sort-protos | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/sort-protos b/gcc/sort-protos deleted file mode 100755 index 493e9f0..0000000 --- a/gcc/sort-protos +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# Sort the sys-protos.h file in its usual order. -# Invoke as `sort-protos sys-protos.h'. - -input=$1 - -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 - -mv -f tmp.$input $input |