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/localealias.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/localealias.c')
-rw-r--r-- | intl/localealias.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/intl/localealias.c b/intl/localealias.c index 7aee6a8..e3eb5b8 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -58,11 +58,12 @@ void free (); # 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 #include "gettext.h" |