boot2

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

00153.c (104B)


      1 #define x f
      2 #define y() f
      3 
      4 typedef struct { int f; } S;
      5 
      6 int
      7 main()
      8 {
      9 	S s;
     10 
     11 	s.x = 0;
     12 	return s.y();
     13 }