boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00103.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 }