From: Gurusamy Sarathy Date: Sat, 22 Jan 2000 12:07:23 +0000 (+0000) Subject: avoid warnings due to lack of forward declarations X-Git-Tag: accepted/trunk/20130322.191538~35662 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ba65c74d339105975b4f9ae78fcfe73b8058589;p=platform%2Fupstream%2Fperl.git avoid warnings due to lack of forward declarations p4raw-id: //depot/perl@4841 --- diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm index 1cb5267..6f3d056 100644 --- a/lib/Pod/Html.pm +++ b/lib/Pod/Html.pm @@ -1379,6 +1379,9 @@ sub process_puretext { # there may be pod commands embedded within the text so those must be # converted to html commands. # + +sub process_text1($$;$); + sub process_text { return if $ignore; my( $tref ) = @_; @@ -1881,6 +1884,8 @@ $E2c{gt} = '>'; $E2c{sol} = '/'; $E2c{verbar} = '|'; +sub depod1($;$); + sub depod($){ my $string; if( ref( $_[0] ) ){