ack/lang/basic/lib/lib.h

10 lines
134 B
C
Raw Normal View History

#ifndef LIB_H
#define LIB_H
extern void error(int index);
extern char* salloc(unsigned length);
extern void sfree(char* c);
#endif