summaryrefslogtreecommitdiffstats
path: root/src/arch/e1/include/stdint.h
diff options
context:
space:
mode:
authorMichael Brown2006-03-17 15:13:09 +0100
committerMichael Brown2006-03-17 15:13:09 +0100
commitb2909e547d78d5441b7e88e862c0e00541d3a5f0 (patch)
tree713f2c6be0a71a68b415dfe57493cb6770fac908 /src/arch/e1/include/stdint.h
parentGPXE code cleanup and purge. (diff)
downloadipxe-b2909e547d78d5441b7e88e862c0e00541d3a5f0.tar.gz
ipxe-b2909e547d78d5441b7e88e862c0e00541d3a5f0.tar.xz
ipxe-b2909e547d78d5441b7e88e862c0e00541d3a5f0.zip
They can come back when they have someone to support them.
Diffstat (limited to 'src/arch/e1/include/stdint.h')
-rw-r--r--src/arch/e1/include/stdint.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/arch/e1/include/stdint.h b/src/arch/e1/include/stdint.h
deleted file mode 100644
index 505cc3751..000000000
--- a/src/arch/e1/include/stdint.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef STDINT_H
-#define STDINT_H
-
-typedef unsigned long size_t;
-
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned long uint32_t;
-typedef unsigned long long uint64_t;
-
-typedef signed char int8_t;
-typedef signed short int16_t;
-typedef signed int int32_t;
-typedef signed long long int64_t;
-
-typedef signed char s8;
-typedef unsigned char u8;
-
-typedef signed short s16;
-typedef unsigned short u16;
-
-typedef signed long s32;
-typedef unsigned int u32;
-
-typedef signed long long s64;
-typedef unsigned long long u64;
-
-#endif /* STDINT_H */