constants.
p4raw-id: //depot/perl@28038
use Carp;
use Text::Wrap;
use ExtUtils::Constant::Utils qw(C_stringify perl_stringify);
-$VERSION = '0.02';
+$VERSION = '0.03';
$is_perl56 = ($] < 5.007 && $] > 5.005_50);
return $macro->[0];
}
if (defined $macro && $macro ne "" && $macro ne "1") {
- return "#ifdef $macro\n";
+ return $macro ? "#ifdef $macro\n" : "#if 0\n";
}
return "";
}