URI:
       0253-maxconst.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0253-maxconst.c (168B)
       ---
            1 int
            2 main(void)
            3 {
            4         unsigned long long u = 18446744073709551615ull;
            5 
            6         if (u != 18446744073709551615u)
            7                 return 1;
            8         if (u != 0xFFFFFFFFFFFFFFFF)
            9                 return 2;
           10 
           11         return 0;
           12 }