summaryrefslogtreecommitdiff
path: root/lib/stdint.h
diff options
context:
space:
mode:
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 */