1 /******************************************************************************
2  * Copyright (c) 2004, 2008 IBM Corporation
3  * All rights reserved.
4  * This program and the accompanying materials
5  * are made available under the terms of the BSD License
6  * which accompanies this distribution, and is available at
7  * http://www.opensource.org/licenses/bsd-license.php
8  *
9  * Contributors:
10  *     IBM Corporation - initial implementation
11  *****************************************************************************/
12 
13 #ifndef _STDINT_H
14 #define _STDINT_H
15 
16 typedef unsigned char uint8_t;
17 typedef signed char int8_t;
18 
19 typedef unsigned short uint16_t;
20 typedef signed short int16_t;
21 
22 typedef unsigned int uint32_t;
23 typedef signed int int32_t;
24 
25 typedef unsigned long long uint64_t;
26 typedef signed long long int64_t;
27 
28 typedef unsigned long int uintptr_t;
29 
30 #endif
31