about summary refs log tree commit diff
path: root/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2012-11-20 20:28:24 +0100
committerAndreas Schwab <schwab@linux-m68k.org>2012-11-20 21:00:09 +0100
commit615f651b7eab8e7243f1b4bdcc35222ef91c0bb0 (patch)
treea895d630bc80d76ac57a25efc86cbea770081a88 /ports/sysdeps/m68k/m680x0/fpu/s_frexp.c
parent105ce2ce621b79ebad13e307fb14ef8163cf7a44 (diff)
downloadglibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.tar.gz
glibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.tar.xz
glibc-615f651b7eab8e7243f1b4bdcc35222ef91c0bb0.zip
m68k: Remove indirection through weak_aliasx
Diffstat (limited to 'ports/sysdeps/m68k/m680x0/fpu/s_frexp.c')
-rw-r--r--ports/sysdeps/m68k/m680x0/fpu/s_frexp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c b/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c
index b4493190fc..df738407a9 100644
--- a/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c
+++ b/ports/sysdeps/m68k/m680x0/fpu/s_frexp.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 2003 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -50,6 +50,4 @@ __CONCATX(__,FUNC) (float_type value, int *expptr)
 	 : "0" (value), "dmi" (-iexponent));
   return mantissa;
 }
-
-#define weak_aliasx(a,b) weak_alias(a,b)
-weak_aliasx (__CONCATX(__,FUNC), FUNC)
+weak_alias (__CONCATX(__,FUNC), FUNC)