summaryrefslogtreecommitdiff
path: root/sysdeps/sparc/sparc32/e_sqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/sparc/sparc32/e_sqrt.c')
-rw-r--r--sysdeps/sparc/sparc32/e_sqrt.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/sparc/sparc32/e_sqrt.c b/sysdeps/sparc/sparc32/e_sqrt.c
index 587fd1ee6a..9fab5e3027 100644
--- a/sysdeps/sparc/sparc32/e_sqrt.c
+++ b/sysdeps/sparc/sparc32/e_sqrt.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2016 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
@@ -24,8 +24,7 @@
/* Return the square root of X. */
double
-__ieee754_sqrt (x)
- double x;
+__ieee754_sqrt (double x)
{
register double result;
asm ("fsqrtd %1, %0" : "=f" (result) : "f" (x));