# File test/pseudo_io.rb, line 92
    def ungetc(ch)
      if (@stream) then
        @stream = ch.chr + @stream
      else
        @stream = ch.chr
      end

      nil
    end