boot2

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

longjmp-stub.before (229B)


      1     /* better than nothing: in some cases, we accept to handle errors */
      2     if (s1->error_set_jmp_enabled) {
      3         longjmp(s1->error_jmp_buf, 1);
      4     } else {
      5         /* XXX: eliminate this someday */
      6         exit(1);
      7     }
      8 }