| OLD | NEW |
| 1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 #ifndef PPAPI_C_PP_STDINT_H_ | 5 #ifndef PPAPI_C_PP_STDINT_H_ |
| 6 #define PPAPI_C_PP_STDINT_H_ | 6 #define PPAPI_C_PP_STDINT_H_ |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * @file | 9 * @file |
| 10 * This file provides a definition of C99 sized types | 10 * This file provides a definition of C99 sized types |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 /** This value represents a guaranteed unsigned 64 bit integer. */ | 43 /** This value represents a guaranteed unsigned 64 bit integer. */ |
| 44 typedef unsigned __int64 uint64_t; | 44 typedef unsigned __int64 uint64_t; |
| 45 /** | 45 /** |
| 46 * @} | 46 * @} |
| 47 */ | 47 */ |
| 48 #else | 48 #else |
| 49 #include <stdint.h> | 49 #include <stdint.h> |
| 50 #endif | 50 #endif |
| 51 | 51 |
| 52 #include <stddef.h> /* Needed for size_t. */ | |
| 53 | |
| 54 #endif /* PPAPI_C_PP_STDINT_H_ */ | 52 #endif /* PPAPI_C_PP_STDINT_H_ */ |
| 55 | 53 |
| OLD | NEW |