7 lines
112 B
C
7 lines
112 B
C
// @BAKE gcc $@ -o $*.out -ggdb
|
|
|
|
signed main() {
|
|
void * the_void = &the_void;
|
|
return *(int*)the_void;
|
|
}
|