about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2013-01-04 15:09:33 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2013-01-04 15:10:00 +0530
commitf8af25d218202ff2f5d167b8e44e4b79f91d147f (patch)
treeb1b42459dd86d82bb75fc8fc261a0bba52b49d17
parent302913e17ea02a9f243bac0e5e09f796411aba7e (diff)
downloadglibc-f8af25d218202ff2f5d167b8e44e4b79f91d147f.tar.gz
glibc-f8af25d218202ff2f5d167b8e44e4b79f91d147f.tar.xz
glibc-f8af25d218202ff2f5d167b8e44e4b79f91d147f.zip
Remove commented declarations
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/ieee754/dbl-64/mpa.h6
2 files changed, 3 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 9283a6e71b..9ae2d4be07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+	* sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
+	and adjust the header comment.
+
 	* sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
 	variable name from declaration.
 
diff --git a/sysdeps/ieee754/dbl-64/mpa.h b/sysdeps/ieee754/dbl-64/mpa.h
index 0484ac902a..0126ed75a4 100644
--- a/sysdeps/ieee754/dbl-64/mpa.h
+++ b/sysdeps/ieee754/dbl-64/mpa.h
@@ -23,15 +23,12 @@
 /*  FUNCTIONS:                                                          */
 /*               mcr                                                    */
 /*               acr                                                    */
-/*               cr                                                     */
 /*               cpy                                                    */
-/*               cpymn                                                  */
 /*               mp_dbl                                                 */
 /*               dbl_mp                                                 */
 /*               add                                                    */
 /*               sub                                                    */
 /*               mul                                                    */
-/*               inv                                                    */
 /*               dvd                                                    */
 /*                                                                      */
 /* Arithmetic functions for multiple precision numbers.                 */
@@ -67,15 +64,12 @@ extern const mp_no mptwo;
 #define ABS(x)   ((x) <  0  ? -(x) : (x))
 
 int __acr(const mp_no *, const mp_no *, int);
-// int  __cr(const mp_no *, const mp_no *, int);
 void __cpy(const mp_no *, mp_no *, int);
-// void __cpymn(const mp_no *, int, mp_no *, int);
 void __mp_dbl(const mp_no *, double *, int);
 void __dbl_mp(double, mp_no *, int);
 void __add(const mp_no *, const mp_no *, mp_no *, int);
 void __sub(const mp_no *, const mp_no *, mp_no *, int);
 void __mul(const mp_no *, const mp_no *, mp_no *, int);
-// void __inv(const mp_no *, mp_no *, int);
 void __dvd(const mp_no *, const mp_no *, mp_no *, int);
 
 extern void __mpatan (mp_no *, mp_no *, int);