Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: source/common/putilimp.h

Issue 266503003: Add a support for newlib (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu52/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « patches/putil.patch ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ****************************************************************************** 2 ******************************************************************************
3 * 3 *
4 * Copyright (C) 1997-2013, International Business Machines 4 * Copyright (C) 1997-2013, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ****************************************************************************** 7 ******************************************************************************
8 * 8 *
9 * FILE NAME : putilimp.h 9 * FILE NAME : putilimp.h
10 * 10 *
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 /* not defined */ 109 /* not defined */
110 #else 110 #else
111 # define U_TZSET tzset 111 # define U_TZSET tzset
112 #endif 112 #endif
113 113
114 #if defined(U_TIMEZONE) || defined(U_HAVE_TIMEZONE) 114 #if defined(U_TIMEZONE) || defined(U_HAVE_TIMEZONE)
115 /* Use the predefined value. */ 115 /* Use the predefined value. */
116 #elif U_PLATFORM == U_PF_ANDROID 116 #elif U_PLATFORM == U_PF_ANDROID
117 # define U_TIMEZONE timezone 117 # define U_TIMEZONE timezone
118 #elif U_PLATFORM_IS_LINUX_BASED 118 #elif U_PLATFORM_IS_LINUX_BASED
119 # if !defined(__UCLIBC__) 119 # if defined(__UCLIBC__)
120 /* __timezone is only available in glibc */ 120 /* uClibc does not have __timezone or _timezone. */
121 # define U_TIMEZONE __timezone 121 # elif defined(_NEWLIB_VERSION)
122 # define U_TIMEZONE _timezone
123 # elif defined(__GLIBC__)
124 # define U_TIMEZONE __timezone
122 # endif 125 # endif
123 #elif U_PLATFORM_USES_ONLY_WIN32_API 126 #elif U_PLATFORM_USES_ONLY_WIN32_API
124 # define U_TIMEZONE _timezone 127 # define U_TIMEZONE _timezone
125 #elif U_PLATFORM == U_PF_BSD && !defined(__NetBSD__) 128 #elif U_PLATFORM == U_PF_BSD && !defined(__NetBSD__)
126 /* not defined */ 129 /* not defined */
127 #elif U_PLATFORM == U_PF_OS400 130 #elif U_PLATFORM == U_PF_OS400
128 /* not defined */ 131 /* not defined */
129 #elif U_PLATFORM == U_PF_IPHONE 132 #elif U_PLATFORM == U_PF_IPHONE
130 /* not defined */ 133 /* not defined */
131 #else 134 #else
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 /* also _C_TS_calloc(x) */ 601 /* also _C_TS_calloc(x) */
599 #else 602 #else
600 /* C defaults */ 603 /* C defaults */
601 # define uprv_default_malloc(x) malloc(x) 604 # define uprv_default_malloc(x) malloc(x)
602 # define uprv_default_realloc(x,y) realloc(x,y) 605 # define uprv_default_realloc(x,y) realloc(x,y)
603 # define uprv_default_free(x) free(x) 606 # define uprv_default_free(x) free(x)
604 #endif 607 #endif
605 608
606 609
607 #endif 610 #endif
OLDNEW
« no previous file with comments | « patches/putil.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698