RE: Perl_report_uninit on Win32

2006-06-20 Thread Jan Dubois
On Tue, 20 Jun 2006, Sisyphus wrote: > On Win32,'Perl_report_uninit' simply aint there in libperl58.a (or > libperl58.lib, as the case may be). > > Anyone know what to use instead of Perl_report_uninit() on Win32 ? > > Is there something happening here that p5p should be aware of ? No, Perl_report

Perl_report_uninit on Win32

2006-06-20 Thread Sisyphus
Hi, The following Inline::C script runs fine on linux (perl 5.8.8): -- try.pl -- use warnings; use Inline C => Config => BUILD_NOISY => 1; use Inline C => <<'EOC'; void foo() { Perl_report_uninit(aTHX); } EOC foo(); # line 12 __END__ - The output is: Use of uninitialized value