diff options
Diffstat (limited to 'sortfunc')
-rwxr-xr-x | sortfunc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sortfunc b/sortfunc deleted file mode 100755 index fe9971fc84..0000000000 --- a/sortfunc +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/perl - -print sort byfuncname <>; - -sub byfuncname { - ($A) = $a =~ /\b(\w+) P\(/; - ($B) = $b =~ /\b(\w+) P\(/; - $A cmp $B; -} |