]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove commented declarations
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Fri, 4 Jan 2013 09:39:33 +0000 (15:09 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Fri, 4 Jan 2013 09:40:00 +0000 (15:10 +0530)
ChangeLog
sysdeps/ieee754/dbl-64/mpa.h

index 9283a6e71b67b73574246cc4d325d5854c7d2e9a..9ae2d4be07c71bc93df0d283d129f6b1143e48a0 100644 (file)
--- 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.
 
index 0484ac902a2019c1c30408bb8ab569980e6aad6f..0126ed75a44992ff47825bf74958dddc5419ee54 100644 (file)
 /*  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);