You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef BUILTINS_H_
|
|
#define BUILTINS_H_
|
|
|
|
#include "parser.h"
|
|
|
|
#define SKIP_SIG (uint32_t)-5
|
|
#define CALL_SIG (uint32_t)-6
|
|
|
|
void iload_builtins(instance *it);
|
|
|
|
int bn_end(instance *it);
|
|
|
|
#endif // BUILTINS_H_
|