summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-04-29 08:55:12 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-04-29 08:55:12 +0000
commit4801ca722fb86c6dd33d0230c35f5c5bdfc8d04a (patch)
treeb678b627273ee598bfc34d5da1a0baa8b8ff0327 /embed.h
parentefb1e16277f66a0184224d33bb0713398ba162b2 (diff)
downloadperl-4801ca722fb86c6dd33d0230c35f5c5bdfc8d04a.tar.gz
If it's S_, it should be STATIC.
p4raw-id: //depot/perl@19366
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/embed.h b/embed.h
index 325217b888..489a552d5b 100644
--- a/embed.h
+++ b/embed.h
@@ -2030,6 +2030,11 @@
#define mess_alloc S_mess_alloc
#endif
#endif
+#if defined(PERL_IN_NUMERIC_C) || defined(PERL_DECL_PROT)
+#ifdef PERL_CORE
+#define mulexp10 S_mulexp10
+#endif
+#endif
#define sv_setsv_flags Perl_sv_setsv_flags
#define sv_catpvn_flags Perl_sv_catpvn_flags
#define sv_catsv_flags Perl_sv_catsv_flags
@@ -4496,6 +4501,11 @@
#define mess_alloc() S_mess_alloc(aTHX)
#endif
#endif
+#if defined(PERL_IN_NUMERIC_C) || defined(PERL_DECL_PROT)
+#ifdef PERL_CORE
+#define mulexp10 S_mulexp10
+#endif
+#endif
#define sv_setsv_flags(a,b,c) Perl_sv_setsv_flags(aTHX_ a,b,c)
#define sv_catpvn_flags(a,b,c,d) Perl_sv_catpvn_flags(aTHX_ a,b,c,d)
#define sv_catsv_flags(a,b,c) Perl_sv_catsv_flags(aTHX_ a,b,c)