about summary refs log tree commit diff
path: root/math/w_lgammaf.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2017-10-02 13:01:02 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2017-10-02 17:33:13 +0100
commitbdc5c59214a9e4bd9a299deead29c04ddf141256 (patch)
treeb523a6912c7543ec8df12710c19141de6862a858 /math/w_lgammaf.c
parentbd4430c2a6d9d4deb49cab20ebe6aaf8a779ba0d (diff)
downloadglibc-bdc5c59214a9e4bd9a299deead29c04ddf141256.tar.gz
glibc-bdc5c59214a9e4bd9a299deead29c04ddf141256.tar.xz
glibc-bdc5c59214a9e4bd9a299deead29c04ddf141256.zip
fix gamma symbol for static linking and new targets
The lgamma compat code is no longer built for !LIBM_SVID_COMPAT targets,
but the legacy gamma, gammaf and gammal symbols should be still defined,
so make them aliases to the non-compat lgamma code.

	* math/w_lgamma.c: New file.
	* math/w_lgammaf.c: New file.
	* math/w_lgammal.c: New file.
Diffstat (limited to 'math/w_lgammaf.c')
-rw-r--r--math/w_lgammaf.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/math/w_lgammaf.c b/math/w_lgammaf.c
new file mode 100644
index 0000000000..371fa26234
--- /dev/null
+++ b/math/w_lgammaf.c
@@ -0,0 +1,6 @@
+#include <math-type-macros-float.h>
+#include <w_lgamma_template.c>
+#if __USE_WRAPPER_TEMPLATE
+strong_alias (__lgammaf, __gammaf)
+weak_alias (__gammaf, gammaf)
+#endif