Ticket #7243: boost.tools.build.v2.engine.mem.h.patch

File boost.tools.build.v2.engine.mem.h.patch, 427 bytes (added by Bryan Ashby <nuskooler@…>, 10 years ago)

Patch for mem.h

  • tools/build/v2/engine/mem.h

     
    6565#else
    6666
    6767    /* Standard C memory allocation. */
     68    #include <stdlib.h>
    6869    #define bjam_malloc_x(s) malloc(s)
    6970    #define bjam_calloc_x(n,s) calloc(n,s)
    7071    #define bjam_realloc_x(p,s) realloc(p,s)