#ifndef _RUNTIME_H #define _RUNTIME_H /* This header file describes various runtime errors that may occur * within compiled code. */ extern int runtime_error; extern int runtime_cmd; #define RT_ERR_NONE 0x00000000 /* no error */ #define RT_ERR_UFO 0x00000001 /* OUR ERROR! */ #define RT_ERR_ENOMEM 0x00000002 /* malloc() failed */ #define RT_ERR_BADASSIGN 0x00000003 /* bad assignment */ #define RT_ERR_ARGC 0x00000004 /* bad argument count */ #define RT_ERR_BADTYPE 0x00000005 /* bad types at compare */ #endif /* _RUNTIME_H */