summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2006-04-25 14:55:23 +0200
committerMichael Brown2006-04-25 14:55:23 +0200
commit7a82c3eca32150106d8ffd036edf7867e53c25cf (patch)
tree1a1a7917ee3c329d9a4788796c8592dbc5705b7a
parentActually, it's probably a good idea to have packet buffers avoid 4kB (diff)
downloadipxe-7a82c3eca32150106d8ffd036edf7867e53c25cf.tar.gz
ipxe-7a82c3eca32150106d8ffd036edf7867e53c25cf.tar.xz
ipxe-7a82c3eca32150106d8ffd036edf7867e53c25cf.zip
Added missing ssize_t
-rw-r--r--src/arch/i386/include/stdint.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/i386/include/stdint.h b/src/arch/i386/include/stdint.h
index c801cf6f..f17807ae 100644
--- a/src/arch/i386/include/stdint.h
+++ b/src/arch/i386/include/stdint.h
@@ -2,6 +2,7 @@
#define STDINT_H
typedef unsigned long size_t;
+typedef signed long ssize_t;
typedef signed long off_t;
typedef unsigned char uint8_t;