* i386m3-nat.c: Include floatformat.h.
authorJim Kingdon <jkingdon@engr.sgi.com>
Sun, 13 Mar 1994 20:17:39 +0000 (20:17 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Sun, 13 Mar 1994 20:17:39 +0000 (20:17 +0000)
(get_i387_state): Use memset not bzero.

gdb/ChangeLog
gdb/i386m3-nat.c

index 5685119e11de084bc0382626e37c273e4e56fbe6..f86f820cb59ba8bbd44249ed578ebf9fdbd7ecdd 100644 (file)
@@ -1,5 +1,8 @@
 Sun Mar 13 09:45:51 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * i386m3-nat.c: Include floatformat.h.
+       (get_i387_state): Use memset not bzero.
+
        * Version 4.12.3.
 
        * Makefile.in: Enable commented out getopt_h, bfd_h, etc.  Change
index 8892e1670234b30a9bfb81e3a14015b2827f6ae1..b3c93586d20feadb75ebabc448d2c22efd290a70 100644 (file)
@@ -19,6 +19,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #include "defs.h"
 #include "inferior.h"
+#include "floatformat.h"
 
 #include <stdio.h>
 
@@ -374,7 +375,7 @@ get_i387_state (fstate)
   /* Clear the target then copy thread's float state there.
      Make a copy of the status word, for some reason?
    */
-  bzero (fstate, sizeof(struct fpstate));
+  memset (fstate, 0, sizeof (struct fpstate));
 
   fstate->status = fsp->exc_status;