salloc.h 461 B

123456789101112131415161718
  1. /*
  2. * The Amsterdam Compiler Kit
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef MACH_PROTO_NCG_SALLOC_H
  6. #define MACH_PROTO_NCG_SALLOC_H
  7. /* mach/proto/ncg/salloc.c */
  8. string myalloc(int size);
  9. void myfree(string p);
  10. void popstr(int nnstab);
  11. char *salloc(int size);
  12. int compar(const void *vp1, const void *vp2);
  13. void garbage_collect(void);
  14. void chkstr(string str, char used[]);
  15. #endif /* MACH_PROTO_NCG_SALLOC_H */