nanowasm/src/op/control_flow/nop.c

14 lines
167 B
C

#include <ops.h>
#include <nanowasm/nw.h>
#include <interp.h>
int op_nop(struct nw_interp *const i)
{
return 0;
}
int check_nop(FILE *const f)
{
return 0;
}