summaryrefslogtreecommitdiff
path: root/gcc/sort-protos
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-14 20:25:36 -0800
committerYamaArashi <shadow962@live.com>2016-02-14 20:25:36 -0800
commitd480dd4c665ea845fe99101e76b073197ccb9699 (patch)
tree3d48379cfc3446db40dbceb00dea9d3e6306d180 /gcc/sort-protos
parent69d04ba246cd5716eb4efd0ad8bc761a2d3ae7ab (diff)
remove more unused files
Diffstat (limited to 'gcc/sort-protos')
-rwxr-xr-xgcc/sort-protos9
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