X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/90122e523ed5d77a6951ec7332c7d5e72eec802c..0b67a02c833eca817fa0e4a548dc765532c2485f:/lib/minilib.c 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. */