boot2

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

malloc-max-align.after (219B)


      1 #if !__M2__
      2   /* align what we give back. cc.scm has no max_align_t; 16 is the
      3    * largest scalar alignment we hand out (long long / pointer / double). */
      4   __brk = (char*) (((uintptr_t) __brk + 16 - 1) & -16);
      5 #endif