avoid warnings due to lack of forward declarations
authorGurusamy Sarathy <gsar@cpan.org>
Sat, 22 Jan 2000 12:07:23 +0000 (12:07 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Sat, 22 Jan 2000 12:07:23 +0000 (12:07 +0000)
p4raw-id: //depot/perl@4841

lib/Pod/Html.pm

index 1cb5267..6f3d056 100644 (file)
@@ -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] ) ){