summaryrefslogtreecommitdiff
path: root/lib/stdint.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-10-03 01:23:21 +0200
committerRichard Braun <rbraun@sceen.net>2012-10-03 01:26:08 +0200
commita4485f033c4ffa07955a45cad30424aedb89dff4 (patch)
tree136381bd711a9e6bd54b0c31fb347b35028911d1 /lib/stdint.h
parent69504fc63720b4bf2677d6074285b82256bc9b83 (diff)
x86: new architecture
Merge 32-bit IA-32 (i386) and 64-bit AMD64 (amd64) code into one common architecture. The amd64 variant isn't functional yet.
Diffstat (limited to 'lib/stdint.h')
-rw-r--r--lib/stdint.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/stdint.h b/lib/stdint.h
index ee531db3..17cb9a2b 100644
--- a/lib/stdint.h
+++ b/lib/stdint.h
@@ -22,17 +22,9 @@ typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
-
-#ifdef __LP64__
-typedef signed int int32_t;
-typedef unsigned int uint32_t;
-typedef signed long int64_t;
-typedef unsigned long uint64_t;
-#else /* __LP64__ */
typedef signed int int32_t;
typedef unsigned int uint32_t;
typedef signed long long int64_t;
typedef unsigned long long uint64_t;
-#endif /* __LP64__ */
#endif /* _LIB_STDINT_H */