summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-09-09 16:42:23 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-09-09 16:54:31 -0400
commit55da5e5be8c15bbacc211d5fac299c75d30b1405 (patch)
treedfdd3ac9c32a2df4f97b25454f88cb020309afb3 /perl.h
parent940e3d56ea099d9ea898e58e15f4c42acd0485c8 (diff)
downloadperl-55da5e5be8c15bbacc211d5fac299c75d30b1405.tar.gz
Comment tweaks.
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index 6f60646bf9..6a1433d7b6 100644
--- a/perl.h
+++ b/perl.h
@@ -1885,6 +1885,7 @@ typedef NVTYPE NV;
# endif
# endif
# ifdef HAS_SQRTL
+/* These math interfaces are the long double cousins of the C89 math. */
# define Perl_acos acosl
# define Perl_asin asinl
# define Perl_atan atanl
@@ -1893,6 +1894,7 @@ typedef NVTYPE NV;
# define Perl_cos cosl
# define Perl_cosh coshl
# define Perl_exp expl
+/* no Perl_fabs, but there's PERL_ABS */
# define Perl_floor floorl
# define Perl_fmod fmodl
# define Perl_log logl
@@ -1987,6 +1989,7 @@ EXTERN_C long double modfl(long double, long double *);
# endif
# endif
+/* These math interfaces are C89. */
# define Perl_acos acos
# define Perl_asin asin
# define Perl_atan atan
@@ -1995,6 +1998,7 @@ EXTERN_C long double modfl(long double, long double *);
# define Perl_cos cos
# define Perl_cosh cosh
# define Perl_exp exp
+/* no Perl_fabs, but there's PERL_ABS */
# define Perl_floor floor
# define Perl_fmod fmod
# define Perl_log log