summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-08-26 10:30:30 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-08-26 19:43:21 -0400
commit052758aee7da4bf89ba53e95f1debc8701318f3f (patch)
tree823135c021951681a5830e33bd2ab92565fe5a74
parentf6ea46e05e3d19ea4e33e8f60d676ac32e9729ed (diff)
downloadperl-052758aee7da4bf89ba53e95f1debc8701318f3f.tar.gz
*fp*class* comment tweaks.
-rw-r--r--perl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.h b/perl.h
index 7507bf1473..e824f20b75 100644
--- a/perl.h
+++ b/perl.h
@@ -2093,7 +2093,7 @@ EXTERN_C long double modfl(long double, long double *);
# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_POS_ZERO)
#endif
-/* _class(): Legacy: AIX. */
+/* class(), _class(): Legacy: AIX. */
#if !defined(Perl_fp_class) && defined(HAS_CLASS)
# include <math.h>
# ifndef _cplusplus
@@ -2113,7 +2113,7 @@ EXTERN_C long double modfl(long double, long double *);
# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO)
#endif
-/* fp_classify(): Legacy: Unicos? */
+/* fp_classify(): Legacy: VMS, maybe Unicos? */
#if !defined(Perl_fp_class) && defined(HAS_FP_CLASSIFY)
# include <math.h>
# define Perl_fp_class(x) fp_classify(x)