7 lines
95 B
C++
7 lines
95 B
C++
|
|
#if COMPILER_CLANG
|
|
typedef __int128 int128;
|
|
#else
|
|
#error "Need big int implementation"
|
|
#endif
|