diff options
author | Jim Meyering <jim@meyering.net> | 1998-05-03 20:38:44 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-05-03 20:38:44 +0000 |
commit | b711cb4f13e3ccb2855f0b53a1a71e3157650b88 (patch) | |
tree | 4d7bf3fb65ab78f6ab1c1392b80c4901473b0501 /intl/l10nflist.c | |
parent | 2226c329f20f3e8fee1329f147a52e5b80c23a18 (diff) | |
download | idutils-b711cb4f13e3ccb2855f0b53a1a71e3157650b88.tar.gz idutils-b711cb4f13e3ccb2855f0b53a1a71e3157650b88.tar.bz2 idutils-b711cb4f13e3ccb2855f0b53a1a71e3157650b88.zip |
update from gettext-0.10.35
Diffstat (limited to 'intl/l10nflist.c')
-rw-r--r-- | intl/l10nflist.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/intl/l10nflist.c b/intl/l10nflist.c index 4e2bc13..9c7dc18 100644 --- a/intl/l10nflist.c +++ b/intl/l10nflist.c @@ -1,6 +1,6 @@ /* Handle list of needed message catalogs Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. + Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -65,7 +65,9 @@ /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ -# define stpcpy(dest, src) __stpcpy(dest, src) +# ifndef stpcpy +# define stpcpy(dest, src) __stpcpy(dest, src) +# endif #else # ifndef HAVE_STPCPY static char *stpcpy PARAMS ((char *dest, const char *src)); @@ -350,7 +352,7 @@ _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, mask, language, names. */ const char * _nl_normalize_codeset (codeset, name_len) - const char *codeset; + const unsigned char *codeset; size_t name_len; { int len = 0; |