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

Side by Side Diff: source/common/unicode/ptypes.h

Issue 195973005: Add support for QNX Neutrino. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu46/
Patch Set: Created 6 years, 9 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
« icu.gyp ('K') | « source/common/ucnvmbcs.c ('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-2010, International Business Machines 4 * Copyright (C) 1997-2010, 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 : ptypes.h 9 * FILE NAME : ptypes.h
10 * 10 *
(...skipping 16 matching lines...) Expand all
27 #elif defined(ANDROID) 27 #elif defined(ANDROID)
28 # include "unicode/pandroid.h" 28 # include "unicode/pandroid.h"
29 #elif defined(__native_client__) 29 #elif defined(__native_client__)
30 # include "unicode/pnacl.h" 30 # include "unicode/pnacl.h"
31 #elif defined(__linux__) 31 #elif defined(__linux__)
32 # include "unicode/plinux.h" 32 # include "unicode/plinux.h"
33 #elif defined(__FreeBSD__) 33 #elif defined(__FreeBSD__)
34 # include "unicode/pfreebsd.h" 34 # include "unicode/pfreebsd.h"
35 #elif defined(__OpenBSD__) 35 #elif defined(__OpenBSD__)
36 # include "unicode/popenbsd.h" 36 # include "unicode/popenbsd.h"
37 #elif defined(__QNXNTO__)
38 # include "unicode/pqnx.h"
Mark Mentovai 2014/03/18 15:37:17 I don’t see this file in this change.
37 #else 39 #else
38 # include "unicode/platform.h" 40 # include "unicode/platform.h"
39 #endif 41 #endif
40 42
41 /*===========================================================================*/ 43 /*===========================================================================*/
42 /* Generic data types */ 44 /* Generic data types */
43 /*===========================================================================*/ 45 /*===========================================================================*/
44 46
45 /* If your platform does not have the <inttypes.h> header, you may 47 /* If your platform does not have the <inttypes.h> header, you may
46 need to edit the typedefs below. */ 48 need to edit the typedefs below. */
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 #endif 98 #endif
97 99
98 #if ! U_HAVE_UINT64_T 100 #if ! U_HAVE_UINT64_T
99 typedef unsigned long long uint64_t; 101 typedef unsigned long long uint64_t;
100 /* else we may not have a 64-bit type */ 102 /* else we may not have a 64-bit type */
101 #endif 103 #endif
102 104
103 #endif /* U_HAVE_INTTYPES_H */ 105 #endif /* U_HAVE_INTTYPES_H */
104 106
105 #endif /* _PTYPES_H */ 107 #endif /* _PTYPES_H */
OLDNEW
« icu.gyp ('K') | « source/common/ucnvmbcs.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698