scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0106-ppcast.c (115B)


      1 int
      2 main()
      3 {
      4 	int x;
      5 	void *foo;
      6 	void **bar;
      7 	
      8 	x = 0;
      9 	
     10 	foo = (void*)&x;
     11 	bar = &foo;
     12 	
     13 	return **(int**)bar;
     14 }