We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23a4957 commit d99e553Copy full SHA for d99e553
vendor/lua/src/luaconf.h
@@ -747,9 +747,19 @@ union luai_Cast { double l_d; long l_l; };
747
** CHANGE them if your system supports long long or does not support long.
748
*/
749
750
+#if defined(LUA_USELONGLONG)
751
+
752
#define LUA_INTFRMLEN "ll"
753
#define LUA_INTFRM_T long long
754
755
+#else
756
757
+#define LUA_INTFRMLEN "l"
758
+#define LUA_INTFRM_T long
759
760
+#endif
761
762
763
764
/* =================================================================== */
765
0 commit comments