Files
corelang/big_int.cpp
2022-06-04 09:34:43 +02:00

7 lines
95 B
C++

#if COMPILER_CLANG
typedef __int128 int128;
#else
#error "Need big int implementation"
#endif