diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-04-15 09:07:52 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-04-15 09:07:52 -0500 |
commit | a5c013ec4bc442f92b07af91dcd92b53b60f1113 (patch) | |
tree | f8fef5223071c89365db9e16a332ad4381551380 | |
parent | 0cc476b2b180a840a078960bf83826dc12823646 (diff) |
fix MacOSX breakage due to e75d09e4e89d3eda7ddaa2c085678edf9a21293f
it is presumed here that Supported Unix platform are also Posix compliant.
-rw-r--r-- | sal/osl/unx/nlsupport.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sal/osl/unx/nlsupport.c b/sal/osl/unx/nlsupport.c index a9b84cbab8dd..6312cc956392 100644 --- a/sal/osl/unx/nlsupport.c +++ b/sal/osl/unx/nlsupport.c @@ -945,11 +945,7 @@ void _imp_getProcessLocale( rtl_Locale ** ppLocale ) static int _setenv (const char* name, const char* value) { -#if defined( AIX ) return setenv (name, value, 1); -#else - return setenv (name, value); -#endif } int _imp_setProcessLocale( rtl_Locale * pLocale ) |