diff options
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ typedef signed char ls_byte; | |||
82 | #if defined(UINTPTR_MAX) /* even in C99 this type is optional */ | 82 | #if defined(UINTPTR_MAX) /* even in C99 this type is optional */ |
83 | #define L_P2I uintptr_t | 83 | #define L_P2I uintptr_t |
84 | #else /* no 'intptr'? */ | 84 | #else /* no 'intptr'? */ |
85 | #define L_P2I uintmax_t /* use the largerst available integer */ | 85 | #define L_P2I uintmax_t /* use the largest available integer */ |
86 | #endif | 86 | #endif |
87 | #else /* C89 option */ | 87 | #else /* C89 option */ |
88 | #define L_P2I size_t | 88 | #define L_P2I size_t |