summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-13 02:16:07 -0800
committerYamaArashi <shadow962@live.com>2016-02-13 02:16:07 -0800
commit87926b4bcc3046ac85fabda09178e9bf50dd8381 (patch)
tree5b5ed9076e0200c36f979e0f8baaa23f4406cfd8 /gcc/toplev.c
parent56d3f75d136e839223544f0495cceb098afa1d55 (diff)
remove use of strings.h
Diffstat (limited to 'gcc/toplev.c')
-rwxr-xr-xgcc/toplev.c4
1 files changed, 2 insertions, 2 deletions
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. */