summaryrefslogtreecommitdiff
path: root/libc/math/e_exp10l.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/math/e_exp10l.c')
-rw-r--r--libc/math/e_exp10l.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/math/e_exp10l.c b/libc/math/e_exp10l.c
index 56f0cfec2..6bd859fde 100644
--- a/libc/math/e_exp10l.c
+++ b/libc/math/e_exp10l.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2011 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@@ -18,7 +18,7 @@
02111-1307 USA. */
#include <math.h>
-#include "math_private.h"
+#include <math_private.h>
long double
@@ -28,3 +28,4 @@ __ieee754_exp10l (long double arg)
replaced sometime (soon?). */
return __ieee754_expl (M_LN10l * arg);
}
+strong_alias (__ieee754_exp10l, __exp10l_finite)