* ext/aix_mksym.rb: no longer used.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3360 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-01-19 17:16:24 +00:00
parent 81768d1da5
commit 9e1339a68f
2 changed files with 4 additions and 12 deletions

View File

@ -1,3 +1,7 @@
Mon Jan 20 02:15:53 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* ext/aix_mksym.rb: no longer used.
Mon Jan 20 00:17:16 2003 Matt Armstrong <matt@lickey.com>
* file.c (eaccess): under windows, make eaccess() just call

View File

@ -1,12 +0,0 @@
data = []
IO.foreach("|/usr/ccs/bin/nm -p #{ARGV[0]}") do |line|
line = line.split
case line[1]
when "B", "D"
data << line[0]
end
end
data.uniq!
data.sort!
open(ARGV[1], "w") {|exp| exp.puts "#!", data}