summaryrefslogtreecommitdiff
path: root/sprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sprintf.c')
-rw-r--r--sprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sprintf.c b/sprintf.c
index 507724f6b9..278b16607c 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -3,7 +3,7 @@
sprintf.c -
$Author: matz $
- $Date: 1994/12/06 09:30:23 $
+ $Date: 1995/01/10 10:42:59 $
created at: Fri Oct 15 10:39:26 JST 1993
Copyright (C) 1994 Yukihiro Matsumoto
@@ -46,7 +46,7 @@ Fsprintf(argc, argv)
#define PUSH(s, l) { \
CHECK(l);\
- memmove(&buf[blen], s, l);\
+ memcpy(&buf[blen], s, l);\
blen += (l);\
}