diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-08-26 10:30:30 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-08-26 19:43:21 -0400 |
commit | 052758aee7da4bf89ba53e95f1debc8701318f3f (patch) | |
tree | 823135c021951681a5830e33bd2ab92565fe5a74 | |
parent | f6ea46e05e3d19ea4e33e8f60d676ac32e9729ed (diff) | |
download | perl-052758aee7da4bf89ba53e95f1debc8701318f3f.tar.gz |
*fp*class* comment tweaks.
-rw-r--r-- | perl.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |