diff options
author | Jim Meyering <jim@meyering.net> | 1996-11-27 05:09:59 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-11-27 05:09:59 +0000 |
commit | 5b35fa9fdcb0bb9ce1c3aa158e0b71eb222952e9 (patch) | |
tree | 9a2c1dedf4d4c2925ac28c2172abd11620ebccbd /intl/l10nflist.c | |
parent | ef8dc670b64f7efdeb71111135f3cc37b5ba9a67 (diff) | |
download | idutils-5b35fa9fdcb0bb9ce1c3aa158e0b71eb222952e9.tar.gz idutils-5b35fa9fdcb0bb9ce1c3aa158e0b71eb222952e9.tar.bz2 idutils-5b35fa9fdcb0bb9ce1c3aa158e0b71eb222952e9.zip |
merge with 0.10.25
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 |