14 lines
353 B
C
14 lines
353 B
C
#pragma once
|
|
|
|
struct function;
|
|
struct context;
|
|
struct node;
|
|
|
|
int emit_builtin_syntax(struct function *fn,
|
|
struct context *ctx,
|
|
const char *name,
|
|
struct node *tail);
|
|
int emit_builtin_insn(struct function *fn,
|
|
const char *name,
|
|
int argc);
|