ack/mach/proto/cg/salloc.h

21 lines
455 B
C
Raw Normal View History

2019-05-10 17:11:54 +00:00
/* Copyright (c) 2019 ACK Project.
* See the copyright notice in the ACK home directory,
* in the file "Copyright".
*
* Created on: 2019-04-14
*
*/
#ifndef SALLOC_H_
#define SALLOC_H_
#include "types.h"
2022-08-01 20:08:23 +00:00
extern string myalloc(int size);
extern void myfree(void* p);
extern void popstr(int nnstab);
extern char *salloc(int size);
extern int compar(const void* pp1, const void* pp2);
extern void garbage_collect(void);
2019-05-10 17:11:54 +00:00
#endif /* SALLOC_H_ */