Home
       0084-longlong.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
       ---
       0084-longlong.c (87B)
       ---
            1 int
            2 main()
            3 {
            4         long long x;
            5         
            6         x = 0;
            7         x = x + 1;
            8         if (x != 1)
            9                 return 1;
           10         return 0;
           11 }