View | Details | Raw Unified | Return to bug 176628 | Differences between
and this patch

Collapse All | Expand All

(-)sys/sys/stdint.h (-4 / +6 lines)
Lines 65-74 typedef __uintmax_t uintmax_t; Link Here
65
#endif
65
#endif
66
66
67
/* GNU and Darwin define this and people seem to think it's portable */
67
/* GNU and Darwin define this and people seem to think it's portable */
68
#if defined(UINTPTR_MAX) && defined(UINT64_MAX) && (UINTPTR_MAX == UINT64_MAX)
68
#if defined(UINTPTR_MAX) && defined(UINT64_MAX)
69
#define	__WORDSIZE		64
69
# if UINTPTR_MAX == UINT64_MAX
70
#else
70
#  define	__WORDSIZE		64
71
#define	__WORDSIZE		32
71
# else
72
#  define	__WORDSIZE		32
73
# endif
72
#endif
74
#endif
73
75
74
/* Limits of wchar_t. */
76
/* Limits of wchar_t. */

Return to bug 176628