package SPVM::IO::Stderr {
  our $AUTO_FLUSH : rw byte;
  
  INIT {
    $AUTO_FLUSH = 1;
  }
  
  # Same as SPVM::IO::File. SPVM::IO::Stderr
  native sub print : void ($string : string);
  native sub flush : void ();
}