aboutsummaryrefslogtreecommitdiff
path: root/libiberty/copysign.c
diff options
context:
space:
mode:
authorsayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>2003-04-15 03:35:47 +0000
committersayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4>2003-04-15 03:35:47 +0000
commit83f85421ab7b9f97b4152e6174ba2b262d098e67 (patch)
treedcc4ca6916745869895ab9bff8b4d6e3c5108d71 /libiberty/copysign.c
parent907e33698da74157790de475aadef58dc997e60b (diff)
* argv.c: Use ANSI_PROTOTYPES instead of __STDC__.
* memchr.c: Likewise. * strcasecmp.c: Likewise. * strncasecmp.c: Likewise. * strncmp.c: Likewise. * xatexit.c: Likewise. * xmalloc.c: Likewise. * copysign.c: Use traditional function declaration instead of DEFUN. * sigsetmask.c: Likewise. * memcmp.c: Both of the above, ANSI_PROTOTYPES and DEFUN. * memset.c: Likewise. * memcpy.c: ANSI_PROTOTYPES, DEFUN and prototype bcopy. * memmove.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65619 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/copysign.c')
-rw-r--r--libiberty/copysign.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libiberty/copysign.c b/libiberty/copysign.c
index 5c48a5422eb..d288be239eb 100644
--- a/libiberty/copysign.c
+++ b/libiberty/copysign.c
@@ -131,7 +131,9 @@ typedef union
#if defined(__IEEE_BIG_ENDIAN) || defined(__IEEE_LITTLE_ENDIAN)
-double DEFUN(copysign, (x, y), double x AND double y)
+double
+copysign (x, y)
+ double x, y;
{
__ieee_double_shape_type a,b;
b.value = y;
@@ -142,7 +144,9 @@ double DEFUN(copysign, (x, y), double x AND double y)
#else
-double DEFUN(copysign, (x, y), double x AND double y)
+double
+copysign (x, y)
+ double x, y;
{
if ((x < 0 && y > 0) || (x > 0 && y < 0))
return -x;