summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/POSIX/POSIX.xs6
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs
index ebbef38f50..4ed3855599 100644
--- a/ext/POSIX/POSIX.xs
+++ b/ext/POSIX/POSIX.xs
@@ -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);