From 20d44251fa01c2f55f175fe9d1d3f284daa8dc60 Mon Sep 17 00:00:00 2001 From: Jacob Potter Date: Sun, 14 Dec 2008 03:13:21 -0500 Subject: [PATCH] don't set inline on memcpy; it makes gcc4 sad --- lib/minilib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/minilib.c b/lib/minilib.c index 56090ed..30412db 100644 --- a/lib/minilib.c +++ b/lib/minilib.c @@ -6,7 +6,7 @@ * For small things, gcc inlines its memcpy, but for large things, we call out * to this memcpy. */ -inline void _memcpy(void *dest, const void *src, int bytes) +void _memcpy(void *dest, const void *src, int bytes) { /* I hate everyone */ /* Since we otherwise compile with -O0, we might as well manually speed this up a bit. */ -- 2.39.2