diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-08 19:41:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-08 19:41:25 +0000 |
commit | 56c380de7ceba5f83801db9385a752c5f1437a79 (patch) | |
tree | 3759efde42c85da665a71a3695063aa01d0a9f98 /perl.h | |
parent | 5929cfd6f8a0f5b970af4c44b4cbbb1a2847631a (diff) | |
download | perl-56c380de7ceba5f83801db9385a752c5f1437a79.tar.gz |
Enache Adrian reads comments.
p4raw-id: //depot/perl@18854
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4243,7 +4243,7 @@ extern void moncontrol(int); #endif /* Use instead of abs() since abs() forces its argument to be an int, - * but also beware since evaluates its argument thrice. */ + * but also beware since this evaluates its argument twice, so no x++. */ #define PERL_ABS(x) ((x) < 0 ? -(x) : (x)) /* and finally... */ |