Ignore:
Timestamp:
Feb 27, 2009, 5:08:07 AM (16 years ago)
Author:
bird
Message:

kash: malloc/free/friends gets a psh.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kash/shinstance.h

    r2287 r2290  
    335335char **sh_environ(shinstance *);
    336336const char *sh_gethomedir(shinstance *, const char *);
     337
     338/* heap */
     339void *sh_malloc(shinstance *, size_t);
     340void *sh_calloc(shinstance *, size_t, size_t);
     341void *sh_realloc(shinstance *, void *, size_t);
     342char *sh_strdup(shinstance *, const char *);
     343void  sh_free(shinstance *, void *);
    337344
    338345/* signals */
Note: See TracChangeset for help on using the changeset viewer.