boot2

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

malloc-brk-check.before (101B)


      1   if (brk (__brk + size) == -1)
      2     return 0;
      3   char *p = __brk;
      4   __brk = __brk + size;
      5   return p;