From 87926b4bcc3046ac85fabda09178e9bf50dd8381 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Sat, 13 Feb 2016 02:16:07 -0800 Subject: remove use of strings.h --- gcc/toplev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/toplev.c') diff --git a/gcc/toplev.c b/gcc/toplev.c index 6780337..d8e54cd 100755 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2199,7 +2199,7 @@ set_float_handler (handler) { float_handled = (handler != 0); if (handler) - bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler)); + copy_memory ((char *) handler, (char *) float_handler, sizeof (float_handler)); if (float_handled && ! float_handler_set) { @@ -2237,7 +2237,7 @@ pop_float_handler (handled, handler) { float_handled = handled; if (handled) - bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler)); + copy_memory ((char *) handler, (char *) float_handler, sizeof (float_handler)); } /* Handler for SIGPIPE. */ -- cgit v1.2.3