This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[COMMITTED] Remove unnecessary variable name from functiondeclaration
- From: Siddhesh Poyarekar <siddhesh at redhat dot com>
- To: libc-alpha at sourceware dot org
- Date: Fri, 4 Jan 2013 14:57:51 +0530
- Subject: [COMMITTED] Remove unnecessary variable name from functiondeclaration
Hi,
I have committed the following as obvious:
Siddhesh
commit 302913e17ea02a9f243bac0e5e09f796411aba7e
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date: Fri Jan 4 14:54:46 2013 +0530
Remove argument variable name from function declaration
diff --git a/ChangeLog b/ChangeLog
index 589d82a..9283a6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);