diff options
author | Bruno Haible <bruno@clisp.org> | 2002-04-29 17:34:18 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:07:54 +0200 |
commit | 93e19a8b5ef634e1d3de523a63e47adb3cefab35 (patch) | |
tree | fd47896852f3ab84e0e341679cf215abac37786b /intl/os2compat.c | |
parent | 5e6d385b78c3424c3c7387088ad81b9db2c12774 (diff) | |
download | external_gettext-93e19a8b5ef634e1d3de523a63e47adb3cefab35.zip external_gettext-93e19a8b5ef634e1d3de523a63e47adb3cefab35.tar.gz external_gettext-93e19a8b5ef634e1d3de523a63e47adb3cefab35.tar.bz2 |
Prefix all libintl specific functions with libintl_ instead of suffixing them
with __. Use preprocessor-level redirection in libgnuintl.h.
Diffstat (limited to 'intl/os2compat.c')
-rw-r--r-- | intl/os2compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/os2compat.c b/intl/os2compat.c index 3ca8266..c8dc33e 100644 --- a/intl/os2compat.c +++ b/intl/os2compat.c @@ -39,7 +39,7 @@ _nl_getenv (const char *name) } /* A fixed size buffer. */ -char _nl_default_dirname__[MAXPATHLEN+1]; +char libintl_nl_default_dirname[MAXPATHLEN+1]; char *_nlos2_libdir = NULL; char *_nlos2_localealiaspath = NULL; @@ -94,5 +94,5 @@ nlos2_initialize () } if (strlen (_nlos2_localedir) <= MAXPATHLEN) - strcpy (_nl_default_dirname__, _nlos2_localedir); + strcpy (libintl_nl_default_dirname, _nlos2_localedir); } |