blob: 25c442d2f30cd03afd2e61e4f57a28ae3761f7f8 (
plain)
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
|
/**
* @file stdint.h
* @author Freya Murphy <freya@freyacat.org>
* @author Warren R. Carithers
*
* Integer definitions.
*/
#ifndef _STDINT_H
#define _STDINT_H
// standard integer sized types
typedef char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef long long int int64_t;
typedef unsigned long long int uint64_t;
// other integer types
typedef unsigned char uchar_t;
typedef unsigned int uint_t;
typedef unsigned long int ulong_t;
#endif /* stdint.h */
|