iPXE
stdint.h
Go to the documentation of this file.
1#ifndef _BITS_STDINT_H
2#define _BITS_STDINT_H
3
4FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
5
7typedef signed long ssize_t;
8typedef signed long off_t;
9
10typedef unsigned char uint8_t;
11typedef unsigned short uint16_t;
12typedef unsigned int uint32_t;
13typedef unsigned long long uint64_t;
14
15typedef signed char int8_t;
16typedef signed short int16_t;
17typedef signed int int32_t;
18typedef signed long long int64_t;
19
20typedef unsigned long physaddr_t;
21typedef unsigned long intptr_t;
22
23#endif /* _BITS_STDINT_H */
signed short int16_t
Definition stdint.h:16
unsigned short uint16_t
Definition stdint.h:11
unsigned long intptr_t
Definition stdint.h:21
unsigned int uint32_t
Definition stdint.h:12
signed long off_t
Definition stdint.h:8
unsigned long physaddr_t
Definition stdint.h:20
__SIZE_TYPE__ size_t
Definition stdint.h:6
unsigned long long uint64_t
Definition stdint.h:13
signed int int32_t
Definition stdint.h:17
unsigned char uint8_t
Definition stdint.h:10
signed long long int64_t
Definition stdint.h:18
signed long ssize_t
Definition stdint.h:7
signed char int8_t
Definition stdint.h:15
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define __SIZE_TYPE__
Definition stdint.h:14