boot2

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

000-exit.c (248B)


      1 /* Sanity: bare main returning a value. Doesn't touch libc — confirms
      2  * the cc-libc harness (cc.scm --lib=app__ → catm chain → boot-build-p1pp)
      3  * produces a runnable ELF when nothing in libc is exercised. */
      4 int
      5 main (void)
      6 {
      7   return 7;
      8 }