From 8b384a7013a6755c5a83ab71ee9065e3e48f8783 Mon Sep 17 00:00:00 2001 From: Herbert Xu Date: Sat, 29 Oct 2005 16:29:22 +1000 Subject: Added missing system.h inclusion for mempcpy All users of mempcpy must include system.h. --- src/expand.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/expand.c') diff --git a/src/expand.c b/src/expand.c index c3f1eef..dafb51f 100644 --- a/src/expand.c +++ b/src/expand.c @@ -75,6 +75,7 @@ #include "error.h" #include "mystring.h" #include "show.h" +#include "system.h" /* * _rmescape() flags @@ -1650,12 +1651,7 @@ _rmescapes(char *str, int flag) } q = r; if (len > 0) { -#ifdef _GNU_SOURCE q = mempcpy(q, str, len); -#else - memcpy(q, str, len); - q += len; -#endif } } inquotes = (flag & RMESCAPE_QUOTED) ^ RMESCAPE_QUOTED; -- cgit 1.4.1