* breakpoint.c (breakpoint_re_set): Avoid setting source symtab
[deliverable/binutils-gdb.git] / gdb / ieee-float.c
index 417186b436402e8013556f747eabff57834960b7..1764368fc559db61576a7bf8c2582916f878d01c 100644 (file)
@@ -17,8 +17,6 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#include <stdio.h>
-
 #include "defs.h"
 #include "ieee-float.h"
 #include <math.h>              /* ldexp */
@@ -79,7 +77,7 @@ double_to_ieee_extended (ext_format, from, to)
   unsigned long mant0, mant1, exponent;
   unsigned char tobytes[8];
 
-  bzero (to, TOTALSIZE);
+  memset (to, 0, TOTALSIZE);
   if (dfrom == 0)
     return;                    /* Result is zero */
   if (dfrom != dfrom) {
This page took 0.023127 seconds and 4 git commands to generate.