summaryrefslogtreecommitdiff
path: root/libm/e_lgamma.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/e_lgamma.c')
-rw-r--r--libm/e_lgamma.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/libm/e_lgamma.c b/libm/e_lgamma.c
deleted file mode 100644
index b9838c48a..000000000
--- a/libm/e_lgamma.c
+++ /dev/null
@@ -1,26 +0,0 @@
-
-/*
- * ====================================================
- * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
- *
- * Developed at SunPro, a Sun Microsystems, Inc. business.
- * Permission to use, copy, modify, and distribute this
- * software is freely granted, provided that this notice
- * is preserved.
- * ====================================================
- *
- */
-
-/* __ieee754_lgamma(x)
- * Return the logarithm of the Gamma function of x.
- *
- * Method: call __ieee754_lgamma_r
- */
-
-#include <math.h>
-#include "math_private.h"
-
-double attribute_hidden __ieee754_lgamma(double x)
-{
- return __ieee754_lgamma_r(x,&signgam);
-}