summary refs log tree commit diff
path: root/src/instruction/nop.c
blob: 8e0539685e96bac413c4e16e1df17ebc63aee213 (plain)
1
2
3
4
5
6
7
#include "3cl.h"
#include "instruction.h"

struct CCLFrame *ccl_instruction_nop(struct CCL *ccl, struct CCLFrame *frame)
{
    return frame;
}