about summary refs log tree commit diff
path: root/sysdeps/ia64/fpu/e_lgamma_r.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-05-26 14:30:51 +0000
committerUlrich Drepper <drepper@redhat.com>2005-05-26 14:30:51 +0000
commit1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6 (patch)
treec7bf2264fd7a549a81eef4163c285333028079c6 /sysdeps/ia64/fpu/e_lgamma_r.c
parent1f708405fc137d3235803832110a7eec8f14d894 (diff)
downloadglibc-1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6.tar.gz
glibc-1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6.tar.xz
glibc-1ab18a5bfb049b07fb58de178f13bbe5e4c0a4e6.zip
Add space inf weak_alias use.
Diffstat (limited to 'sysdeps/ia64/fpu/e_lgamma_r.c')
-rw-r--r--sysdeps/ia64/fpu/e_lgamma_r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ia64/fpu/e_lgamma_r.c b/sysdeps/ia64/fpu/e_lgamma_r.c
index ebc90fc8f3..cb9efbfe02 100644
--- a/sysdeps/ia64/fpu/e_lgamma_r.c
+++ b/sysdeps/ia64/fpu/e_lgamma_r.c
@@ -60,12 +60,12 @@ double __ieee754_lgamma_r(double x, int* signgam)
 {
     return __libm_lgamma(x, signgam, sizeof(*signgam));
 }
-weak_alias(__ieee754_lgamma_r, lgamma_r)
+weak_alias (__ieee754_lgamma_r, lgamma_r)
 
 #ifndef _LIBC
 double __ieee754_gamma_r(double x, int* signgam)
 {
     return __libm_lgamma(x, signgam, sizeof(*signgam));
 }
-weak_alias(__ieee754_gamma_r, gamma_r)
+weak_alias (__ieee754_gamma_r, gamma_r)
 #endif