128b

  1. _martin

    Solved clang; use 128b number

    Hi, I'm testing this on FreeBSD 10.2 amd64. Following is the simple program: #include <stdio.h> int main() { __int128_t bundle; fprintf (stdout, "bundle size: %ld\n", sizeof(bundle)); return 0; } and the output is as expected 16. But when I try to assign a number: __int128_t...
Back
Top