diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-01-04 14:54:46 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-01-04 14:54:46 +0530 |
commit | 302913e17ea02a9f243bac0e5e09f796411aba7e (patch) | |
tree | 84e9039720d82f26efa07c6f9654d35f9ae5f075 | |
parent | 5d7dd1ca8436db8a1444310d3305ca141dc925ac (diff) | |
download | glibc-302913e17ea02a9f243bac0e5e09f796411aba7e.zip glibc-302913e17ea02a9f243bac0e5e09f796411aba7e.tar.gz glibc-302913e17ea02a9f243bac0e5e09f796411aba7e.tar.bz2 |
Remove argument variable name from function declaration
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/ieee754/dbl-64/mpa.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2013-01-04 Siddhesh Poyarekar <siddhesh@redhat.com> + + * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary + variable name from declaration. + 2013-01-03 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): diff --git a/sysdeps/ieee754/dbl-64/mpa.h b/sysdeps/ieee754/dbl-64/mpa.h index dfd56ef..0484ac9 100644 --- a/sysdeps/ieee754/dbl-64/mpa.h +++ b/sysdeps/ieee754/dbl-64/mpa.h @@ -81,6 +81,6 @@ void __dvd(const mp_no *, const mp_no *, mp_no *, int); extern void __mpatan (mp_no *, mp_no *, int); extern void __mpatan2 (mp_no *, mp_no *, mp_no *, int); extern void __mpsqrt (mp_no *, mp_no *, int); -extern void __mpexp (mp_no *, mp_no *__y, int); +extern void __mpexp (mp_no *, mp_no *, int); extern void __c32 (mp_no *, mp_no *, mp_no *, int); extern int __mpranred (double, mp_no *, int); |