This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Comment reformatting.
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 19 Nov 2014 00:25:48 +0000 (19:25 -0500)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 19 Nov 2014 00:29:58 +0000 (19:29 -0500)
ext/POSIX/POSIX.xs

index ebbef38..4ed3855 100644 (file)
@@ -729,14 +729,16 @@ static IV my_ilogb(NV x)
 #  define c99_ilogb my_ilogb
 #endif
 
-/* tgamma and lgamma emulations based on http://www.johndcook.com/cpp_gamma.html,
+/* tgamma and lgamma emulations based on
+ * http://www.johndcook.com/cpp_gamma.html,
  * code placed in public domain.
  *
  * Note that these implementations (neither the johndcook originals
  * nor these) do NOT set the global signgam variable.  This is not
  * necessarily a bad thing. */
 
-/* Note that tgamma() and lgamma() implementations depend on each other. */
+/* Note that the tgamma() and lgamma() implementations
+ * here depend on each other. */
 
 #ifndef HAS_TGAMMA
 static NV my_tgamma(NV x);