From 2c536bff67ed209b1c5aa3d40e40731813bfcd9a Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Wed, 7 Oct 2009 13:06:55 -0400 Subject: Remove memcpy prototypes at Russ' request to prevent code from calling memcpy directly. --- string.c | 1 + 1 file changed, 1 insertion(+) (limited to 'string.c') diff --git a/string.c b/string.c index b356895..a557dc5 100644 --- a/string.c +++ b/string.c @@ -44,6 +44,7 @@ memmove(void *dst, const void *src, uint n) return dst; } +// memcpy exists to placate GCC. Use memmove. void* memcpy(void *dst, const void *src, uint n) { -- cgit v1.2.3