This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlfunc: another alternative for enabling the "state" feature
[perl5.git] / pod / perlcall.pod
index 4794763..f8d2dde 100644 (file)
@@ -56,7 +56,7 @@ subroutines.  They are
     I32 call_sv(SV* sv, I32 flags);
     I32 call_pv(char *subname, I32 flags);
     I32 call_method(char *methname, I32 flags);
-    I32 call_argv(char *subname, I32 flags, register char **argv);
+    I32 call_argv(char *subname, I32 flags, char **argv);
 
 The key function is I<call_sv>.  All the other functions are
 fairly simple wrappers which make it easier to call Perl subroutines in