summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-05-23 14:23:48 -0600
committerKarl Williamson <khw@cpan.org>2019-05-24 17:09:30 -0600
commit0f3d8cd442f9b7ac5abd03743d2a372fa3d871d6 (patch)
tree67d60ca7f51e14efb74182f2bc2a1e2432133464 /numeric.c
parent52129632e392fa9969a1a481f0175777a4329973 (diff)
downloadperl-0f3d8cd442f9b7ac5abd03743d2a372fa3d871d6.tar.gz
numeric.c: Use full name of function in definition
The prefix 'Perl_' was omitted, but this did not matter because there was a macro that expanded to include the prefix. But it's customary to have the expansion at the point of definition.
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 5d2fc5c756..659b69e70a 100644
--- a/numeric.c
+++ b/numeric.c
@@ -97,7 +97,7 @@ The synonym Strod() may be used instead.
*/
NV
-my_strtod(const char * const s, char **e)
+Perl_my_strtod(const char * const s, char **e)
{
dTHX;