Help for this page

Select Code to Download


  1. or download this
    sub flushall {
       for my $fileno (0..1024){ ## blah blah constants
    ...
           $fake->flush;
       }
    }
    
  2. or download this
    sub flushall {
       use POSIX();
    ...
           $fake->flush;
       }
    }