summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-22 12:07:23 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-22 12:07:23 +0000
commit7ba65c74d339105975b4f9ae78fcfe73b8058589 (patch)
treecaa19cee8ef3e0d80102eff7907f88569639d216 /lib
parent2a28b791c040b17cd26931dd9a159635db5fe244 (diff)
downloadperl-7ba65c74d339105975b4f9ae78fcfe73b8058589.tar.gz
avoid warnings due to lack of forward declarations
p4raw-id: //depot/perl@4841
Diffstat (limited to 'lib')
-rw-r--r--lib/Pod/Html.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm
index 1cb526719a..6f3d056a46 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] ) ){