OLD | NEW |
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 Loading... |
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" |
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 Loading... |
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 */ |
OLD | NEW |