0106-ppcast.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
---
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 }