aboutsummaryrefslogtreecommitdiff
path: root/src/math/lgamma.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/lgamma.c')
-rw-r--r--src/math/lgamma.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/lgamma.c b/src/math/lgamma.c
index 2fc9b478..d0011988 100644
--- a/src/math/lgamma.c
+++ b/src/math/lgamma.c
@@ -5,3 +5,11 @@ double lgamma(double x)
{
return __lgamma_r(x, &__signgam);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif