URI: 
       0228-extrcast.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
       ---
       0228-extrcast.c (84B)
       ---
            1 int atoi(const char *);
            2 
            3 void *p[] = {atoi};
            4 
            5 int
            6 main(void)
            7 {
            8         return p[0] == 0;
            9 }