Home
       0191-ary_addr.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
       ---
       0191-ary_addr.c (112B)
       ---
            1 static const char *bla[] = { "a", "b" };
            2 
            3 void
            4 fn(const void *v)
            5 {
            6 }
            7 
            8 int
            9 main(void)
           10 {
           11         fn(&bla);
           12 
           13         return 0;
           14 }