repo.or.cz
/
gpxe.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[sundance] Add reset completion check
[gpxe.git]
/
src
/
include
/
stdint.h
blob
4b0e44f2e5eb9fbf52b1c328b9bcdda97e57a19b
1
#ifndef _STDINT_H
2
#define _STDINT_H
3
4
#include <bits/stdint.h>
5
6
typedef
int8_t
s8
;
7
typedef
uint8_t
u8
;
8
typedef
int16_t
s16
;
9
typedef
uint16_t
u16
;
10
typedef
int32_t
s32
;
11
typedef
uint32_t
u32
;
12
typedef
int64_t
s64
;
13
typedef
uint64_t
u64
;
14
15
typedef
int8_t
int8
;
16
typedef
uint8_t
uint8
;
17
typedef
int16_t
int16
;
18
typedef
uint16_t
uint16
;
19
typedef
int32_t
int32
;
20
typedef
uint32_t
uint32
;
21
typedef
int64_t
int64
;
22
typedef
uint64_t
uint64
;
23
24
#endif
/* _STDINT_H */