aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-18 09:44:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-18 09:44:10 -0300
commite15f1f2bb7a38a3c94519294d031e48508d65006 (patch)
tree1528b4a73da045e4d1617c1a276e66c056ba7686 /llimits.h
parentb5c65705ca78560cd2735778737122ea5f858bd0 (diff)
downloadlua-e15f1f2bb7a38a3c94519294d031e48508d65006.tar.gz
lua-e15f1f2bb7a38a3c94519294d031e48508d65006.tar.bz2
lua-e15f1f2bb7a38a3c94519294d031e48508d65006.zip
Detailsv5.4.5
Typos in comments and details in the manual.
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index 251a2702..1c826f7b 100644
--- a/llimits.h
+++ b/llimits.h
@@ -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