-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedefs.h
37 lines (25 loc) · 985 Bytes
/
typedefs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* Copyright (c) 2011 The project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
// This file contains platform-specific typedefs and defines.
#ifndef TYPEDEFS_H_
#define TYPEDEFS_H_
// Reserved words definitions
// TODO(andrew): Look at removing these.
#define EXTERN extern
#define G_CONST const
typedef signed char Word8;
typedef signed short Word16;
typedef signed int Word32;
typedef signed long long Word64;
typedef unsigned char UWord8;
typedef unsigned short UWord16;
typedef unsigned int UWord32;
typedef unsigned long long UWord64;
#endif // TYPEDEFS_H_