diff options
Diffstat (limited to 'intl/l10nflist.c')
-rw-r--r-- | intl/l10nflist.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/intl/l10nflist.c b/intl/l10nflist.c index fd097d7..7db63db 100644 --- a/intl/l10nflist.c +++ b/intl/l10nflist.c @@ -28,11 +28,12 @@ Boston, MA 02111-1307, USA. */ # include <string.h> #else # include <strings.h> -#endif -#if !HAVE_STRCHR && !defined _LIBC # ifndef strchr # define strchr index # endif +# ifndef memcpy +# define memcpy(Dst, Src, Num) bcopy (Src, Dst, Num) +# endif #endif #if defined _LIBC || defined HAVE_ARGZ_H |