Add big int file

This commit is contained in:
Krzosa Karol
2022-06-04 09:34:43 +02:00
parent f3527be36a
commit a73b12d54d
2 changed files with 8 additions and 1 deletions

6
big_int.cpp Normal file
View File

@@ -0,0 +1,6 @@
#if COMPILER_CLANG
typedef __int128 int128;
#else
#error "Need big int implementation"
#endif