diff options
author | Matthew Horsfall (alh) <wolfsage@gmail.com> | 2013-08-29 08:41:06 -0400 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2015-07-20 15:53:21 +1000 |
commit | 6114e455f60b0de62a0b74edee3c9e1841d49c42 (patch) | |
tree | 82974956c274fa1dc30af3aa8fe07c1491c9be46 /ext/DynaLoader | |
parent | 31221351abb3a508c369e8203d17da077adc667b (diff) | |
download | perl-6114e455f60b0de62a0b74edee3c9e1841d49c42.tar.gz |
Replace reference to newXSUB with newXS.
newXSUB hasn't been around for a long time
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r-- | ext/DynaLoader/DynaLoader_pm.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL index 45dd6d30e9..041424ed75 100644 --- a/ext/DynaLoader/DynaLoader_pm.PL +++ b/ext/DynaLoader/DynaLoader_pm.PL @@ -899,7 +899,7 @@ Syntax: Create a new Perl external subroutine named $perl_name using $symref as a pointer to the function which implements the routine. This is simply -a direct call to newXSUB(). Returns a reference to the installed +a direct call to newXS()/newXS_flags(). Returns a reference to the installed function. The $filename parameter is used by Perl to identify the source file for |