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

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

Issue 8230006: Use the OpenBSD header for ICU on OpenBSD (Closed) Base URL: http://git.chromium.org/chromium/deps/icu46.git@master
Patch Set: Add OpenBSD bits to README.chromium Created 9 years, 2 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
« no previous file with comments | « public/common/unicode/popenbsd.h ('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 10 matching lines...) Expand all
21 #define _PTYPES_H 21 #define _PTYPES_H
22 22
23 #include <sys/types.h> 23 #include <sys/types.h>
24 24
25 #if defined(__APPLE__) 25 #if defined(__APPLE__)
26 # include "unicode/pmac.h" 26 # include "unicode/pmac.h"
27 #elif defined(__linux__) 27 #elif defined(__linux__)
28 # include "unicode/plinux.h" 28 # include "unicode/plinux.h"
29 #elif defined(__FreeBSD__) 29 #elif defined(__FreeBSD__)
30 # include "unicode/pfreebsd.h" 30 # include "unicode/pfreebsd.h"
31 #elif defined(__OpenBSD__)
32 # include "unicode/popenbsd.h"
31 #else 33 #else
32 # include "unicode/platform.h" 34 # include "unicode/platform.h"
33 #endif 35 #endif
34 36
35 /*===========================================================================*/ 37 /*===========================================================================*/
36 /* Generic data types */ 38 /* Generic data types */
37 /*===========================================================================*/ 39 /*===========================================================================*/
38 40
39 /* If your platform does not have the <inttypes.h> header, you may 41 /* If your platform does not have the <inttypes.h> header, you may
40 need to edit the typedefs below. */ 42 need to edit the typedefs below. */
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 #endif 92 #endif
91 93
92 #if ! U_HAVE_UINT64_T 94 #if ! U_HAVE_UINT64_T
93 typedef unsigned long long uint64_t; 95 typedef unsigned long long uint64_t;
94 /* else we may not have a 64-bit type */ 96 /* else we may not have a 64-bit type */
95 #endif 97 #endif
96 98
97 #endif /* U_HAVE_INTTYPES_H */ 99 #endif /* U_HAVE_INTTYPES_H */
98 100
99 #endif /* _PTYPES_H */ 101 #endif /* _PTYPES_H */
OLDNEW
« no previous file with comments | « public/common/unicode/popenbsd.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698