Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2009 The Native Client Authors. All rights reserved. | 2 * Copyright 2009 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
| 4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* | 7 /* |
| 8 * NaCl Service Runtime API. | 8 * NaCl Service Runtime API. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 | 11 |
| 12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ | 12 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ |
| 13 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ | 13 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ |
| 14 | 14 |
| 15 #if defined(__powerpc64__) || defined(__s390x__) || defined(__arch64__) || \ | 15 #if !defined(__WORDSIZE) |
| 16 defined(__sparcv9) || defined(__x86_64__) || defined(_AMD64_) || \ | 16 # if defined(__powerpc64__) || defined(__s390x__) || defined(__arch64__) || \ |
| 17 defined(_M_AMD64) | 17 defined(__sparcv9) || defined(__x86_64__) || defined(_AMD64_) || \ |
| 18 #define __WORDSIZE 64 | 18 defined(_M_AMD64) |
| 19 #else | 19 # define __WORDSIZE 64 |
| 20 #define __WORDSIZE 32 | 20 # else |
| 21 # define __WORDSIZE 32 | |
| 22 # endif | |
| 21 #endif | 23 #endif |
| 22 | 24 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_INCLUDE_BITS_WORDSIZE_H_ */ |
|
Mark Seaborn
2012/09/18 03:24:34
Please keep an empty line before this header's clo
petarj
2012/09/19 17:27:51
Done.
| |
| 23 #endif | |
| OLD | NEW |