boot2

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

010-typedef.c (83B)


      1 typedef int myint;
      2 myint f(myint x) { return x; }
      3 int main(void) { return f(13); }