mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-1632 temporary fix for tzname.
X-SVN-Rev: 7544
This commit is contained in:
parent
321511a973
commit
a42dd565b8
1 changed files with 8 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
* 06/28/99 stephen Removed mutex locking in u_isBigEndian().
|
||||
* 08/04/99 jeffrey R. Added OS/2 changes
|
||||
* 11/15/99 helena Integrated S/390 IEEE support.
|
||||
* 04/26/01 Barry N. OS/400 support for uprv_getDefaultLocaleID
|
||||
* 04/26/01 Barry N. OS/400 support for uprv_getDefaultLocaleIDM
|
||||
* 08/15/01 Steven H. OS/400 support for uprv_getDefaultCodepage
|
||||
******************************************************************************
|
||||
*/
|
||||
|
@ -771,6 +771,13 @@ uprv_timezone()
|
|||
#endif
|
||||
}
|
||||
|
||||
/* Note that U_TZNAME does *not* have to be tzname, but if it does,
|
||||
some platforms need to have it declared here. */
|
||||
|
||||
#ifndef tzname /* For SGI. */
|
||||
extern char *tzname[]; /* RS6000 and others reject char **tzname. */
|
||||
#endif
|
||||
|
||||
U_CAPI char* U_EXPORT2
|
||||
uprv_tzname(int n)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue