diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-11-20 20:28:24 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-11-20 21:00:09 +0100 |
commit | 615f651b7eab8e7243f1b4bdcc35222ef91c0bb0 (patch) | |
tree | a895d630bc80d76ac57a25efc86cbea770081a88 /ports/sysdeps/m68k/m680x0/fpu/s_cexp.c | |
parent | 105ce2ce621b79ebad13e307fb14ef8163cf7a44 (diff) | |
download | glibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.tar glibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.tar.gz glibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.tar.bz2 glibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.zip |
m68k: Remove indirection through weak_aliasx
Diffstat (limited to 'ports/sysdeps/m68k/m680x0/fpu/s_cexp.c')
-rw-r--r-- | ports/sysdeps/m68k/m680x0/fpu/s_cexp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c b/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c index c2a9f1d22e..83750b6435 100644 --- a/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c +++ b/ports/sysdeps/m68k/m680x0/fpu/s_cexp.c @@ -1,5 +1,5 @@ /* Complex exponential function. m68k fpu version - Copyright (C) 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1997-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> @@ -133,5 +133,4 @@ s(__cexp) (__complex__ float_type x) return retval; } -#define weak_aliasx(a,b) weak_alias(a,b) -weak_aliasx (s(__cexp), s(cexp)) +weak_alias (s(__cexp), s(cexp)) |