http://git.etherboot.org
/
people
/
asdlkf
/
gpxe.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
[build] Use __SIZE_TYPE__ macro in definition of size_t
[people/asdlkf/gpxe.git]
/
src
/
arch
/
i386
/
include
/
bits
/
stdint.h
diff --git
a/src/arch/i386/include/bits/stdint.h
b/src/arch/i386/include/bits/stdint.h
index
6ccf097
..
9eb72e9
100644
(file)
--- a/
src/arch/i386/include/bits/stdint.h
+++ b/
src/arch/i386/include/bits/stdint.h
@@
-1,8
+1,8
@@
#ifndef _BITS_STDINT_H
#define _BITS_STDINT_H
-typedef
unsigned int
size_t;
-typedef signed
int
ssize_t;
+typedef
__SIZE_TYPE__
size_t;
+typedef signed
long
ssize_t;
typedef signed long off_t;
typedef unsigned char uint8_t;