Once i use Inline::Files in my code, i cannot dup filehandles anymore. For instance:
<PERL> #!/usr/local/bin/perl use Inline::Files; open(FILE,">/tmp/temp"); if(!open(WHATEVER, '>&FILE')) { die("Can't dup anymore :( "); } print("happy\n"); close(FILE); </PERL> dies on me, but without the 'use Inline::Files' it does not. ?! Using perl 5.6.1 and v0.60 of Inline::Files. thanks, -seb.