(get_i387_state): Use memset not bzero.
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
#include "defs.h"
#include "inferior.h"
+#include "floatformat.h"
#include <stdio.h>
/* 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;