Change 26057 by [EMAIL PROTECTED] on 2005/11/09 10:31:35
Don't declare a function inside another function
Affected files ...
... //depot/perl/perl.c#682 edit
Differences ...
==== //depot/perl/perl.c#682 (text) ====
Index: perl/perl.c
--- perl/perl.c#681~26050~ Tue Nov 8 13:37:52 2005
+++ perl/perl.c Wed Nov 9 02:31:35 2005
@@ -138,9 +138,9 @@
#endif
#ifndef NO_MATHOMS
-/* This reference ensure that the mathoms are linked with perl */
+/* This reference ensures that the mathoms are linked with perl */
+extern void Perl_mathoms();
void Perl_mathoms_ref() {
- extern void Perl_mathoms();
Perl_mathoms();
}
#endif
End of Patch.