# File lib/ruby_to_ansi_c.rb, line 410
  def process_gvar(exp)
    name = exp.shift
    type = exp.sexp_type
    case name
    when :$stderr then
      "stderr"
    else
      raise "Bug! Unhandled gvar #{name.inspect} (type = #{type})"
    end
  end