]> git.lizzy.rs Git - uwu-lang.git/blobdiff - api/int.h
uwuint: use long instead of int to prevent YEAR2038 problem in nolambda time library
[uwu-lang.git] / api / int.h
index 6b5361dfc2608a361dd63dc5f8e660b59516c585..a8ed03c1adb89f9c6ab339327575939e0b2d4c8f 100644 (file)
--- a/api/int.h
+++ b/api/int.h
@@ -4,7 +4,7 @@
 #include "vm.h"
 
 extern UwUVMType uwuint_type;
-UwUVMValue       uwuint_create(int value);
+UwUVMValue       uwuint_create(long value);
 int              uwuint_get(UwUVMValue vm_value);
 
 #endif