scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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 }