epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
reed@android.com | 63debae | 2009-12-16 17:25:43 +0000 | [diff] [blame] | 8 | #ifndef sk_stdint_DEFINED
|
| 9 | #define sk_stdint_DEFINED
|
| 10 |
|
| 11 | typedef signed char int8_t;
|
| 12 | typedef unsigned char uint8_t;
|
| 13 | typedef short int16_t;
|
| 14 | typedef unsigned short uint16_t;
|
| 15 | typedef int int32_t;
|
| 16 | typedef unsigned uint32_t;
|
| 17 | typedef long long int64_t;
|
| 18 | typedef unsigned long long uint64_t;
|
| 19 |
|
| 20 | #endif
|