diff options
| author | Michael Brown | 2006-04-25 14:55:23 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-04-25 14:55:23 +0200 |
| commit | 7a82c3eca32150106d8ffd036edf7867e53c25cf (patch) | |
| tree | 1a1a7917ee3c329d9a4788796c8592dbc5705b7a | |
| parent | Actually, it's probably a good idea to have packet buffers avoid 4kB (diff) | |
| download | ipxe-7a82c3eca32150106d8ffd036edf7867e53c25cf.tar.gz ipxe-7a82c3eca32150106d8ffd036edf7867e53c25cf.tar.xz ipxe-7a82c3eca32150106d8ffd036edf7867e53c25cf.zip | |
Added missing ssize_t
| -rw-r--r-- | src/arch/i386/include/stdint.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/i386/include/stdint.h b/src/arch/i386/include/stdint.h index c801cf6f4..f17807ae4 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; |
