# File lib/celluloid/io/stream.rb, line 216
      def each_byte # :yields: byte
        while c = getc
          yield(c.ord)
        end
      end