jack-compiler/misc/os.h

11 lines
179 B
C
Raw Normal View History

#ifndef OS_H
#define OS_H
#include "parser-tree.h"
SUBROUTDEC* getossubroutdec(SUBROUTCALL* call);
2020-12-31 12:09:42 -05:00
CLASS* getosclass(const char* name);
void populateos();
void freeos();
#endif