From: Larry W. Virden Date: Thu, 30 Jan 1997 13:49:19 +0000 (-0500) Subject: c2ph.PL fix X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=88793d73732ce69a444233da19c5b7ee8431f5a2;p=p5sagit%2Fp5-mst-13.2.git c2ph.PL fix private-msgid: <199701301349.IAA16724@cas.org> --- diff --git a/utils/c2ph.PL b/utils/c2ph.PL index bd4da34..e732d4d 100644 --- a/utils/c2ph.PL +++ b/utils/c2ph.PL @@ -1251,7 +1251,7 @@ main() { EOF for $type (@intrinsics) { - next if !type || $type eq 'void' || $type =~ /complex/; # sun stuff + next if !$type || $type eq 'void' || $type =~ /complex/; # sun stuff print <<"EOF"; printf(mask,sizeof($type), "$type"); EOF