Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[games.git] / gnu / usr.bin / as / testscripts / dounsortsymbols
1 #!/bin/sh
2 # objdump the symbol table, but strip off the headings and symbol
3 # numbers and sort the result.  Intended for use in comparing symbol
4 # tables that may not be in the same order.
5 #
6 # $FreeBSD: src/gnu/usr.bin/as/testscripts/dounsortsymbols,v 1.4 1999/08/27 23:34:36 peter Exp $
7 # $DragonFly: src/gnu/usr.bin/as/testscripts/Attic/dounsortsymbols,v 1.2 2003/06/17 04:25:44 dillon Exp $
8
9 objdump +symbols +omit-symbol-numbers $1 \
10         | sort
11 #eof