boot2

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

malloc-max-align.before (164B)


      1 #if !__M2__
      2   /* align what we give back. */
      3   __brk = (char*) (((uintptr_t) __brk
      4                     + sizeof (max_align_t) - 1) & -sizeof (max_align_t));
      5 #endif